Skip to content

Commit f879739

Browse files
committed
bump version in python plugin codegen
1 parent 66685d5 commit f879739

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

python/rpdk/typescript/__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.0"
3+
__version__ = "0.1.1"
44

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

python/rpdk/typescript/codegen.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717

1818
EXECUTABLE = "cfn"
1919
SUPPORT_LIB_NAME = "cfn-rpdk"
20+
SUPPORT_LIB_VERSION = "0.1.1"
2021
MAIN_HANDLER_FUNCTION = "TypeFunction"
2122
REPO_URL = "https://github.com/eduardomourar/cloudformation-cli-typescript-plugin"
2223

@@ -32,7 +33,7 @@ class TypescriptLanguagePlugin(LanguagePlugin):
3233
ENTRY_POINT = "dist/handlers.entrypoint"
3334
TEST_ENTRY_POINT = "dist/handlers.testEntrypoint"
3435
CODE_URI = "./"
35-
SUPPORT_LIB_URI = f"{REPO_URL}/releases/download/v0.1.0/cfn-rpdk-0.1.0.tgz"
36+
SUPPORT_LIB_URI = f"{REPO_URL}/releases/download/v{SUPPORT_LIB_VERSION}/cfn-rpdk-{SUPPORT_LIB_VERSION}.tgz"
3637

3738
def __init__(self):
3839
self.env = self._setup_jinja_env(

0 commit comments

Comments
 (0)