Skip to content

Commit

Permalink
Fix protocol version (#140)
Browse files Browse the repository at this point in the history
  • Loading branch information
John Tompkins authored Apr 22, 2020
1 parent f14e5b3 commit 09e9b48
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion python/rpdk/go/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import logging

__version__ = "0.1.4"
__version__ = "0.1.5"

logging.getLogger(__name__).addHandler(logging.NullHandler())
2 changes: 1 addition & 1 deletion python/rpdk/go/codegen.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@

LANGUAGE = "go"

DEFAULT_SETTINGS = {"protocolVersion": "1.0", "pluginVersion": __version__}
DEFAULT_SETTINGS = {"protocolVersion": "1.0.0", "pluginVersion": __version__}


class GoExecutableNotFoundError(SysExitRecommendedError):
Expand Down

0 comments on commit 09e9b48

Please sign in to comment.