Skip to content

Commit 09e9b48

Browse files
author
John Tompkins
authored
Fix protocol version (#140)
1 parent f14e5b3 commit 09e9b48

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

python/rpdk/go/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import logging
22

3-
__version__ = "0.1.4"
3+
__version__ = "0.1.5"
44

55
logging.getLogger(__name__).addHandler(logging.NullHandler())

python/rpdk/go/codegen.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424

2525
LANGUAGE = "go"
2626

27-
DEFAULT_SETTINGS = {"protocolVersion": "1.0", "pluginVersion": __version__}
27+
DEFAULT_SETTINGS = {"protocolVersion": "1.0.0", "pluginVersion": __version__}
2828

2929

3030
class GoExecutableNotFoundError(SysExitRecommendedError):

0 commit comments

Comments
 (0)