Skip to content

Commit 0244882

Browse files
committed
bumb to v0.1.2
1 parent e32021c commit 0244882

File tree

5 files changed

+10
-5
lines changed

5 files changed

+10
-5
lines changed

CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [0.1.2] - 2020-05-25
10+
### Fixed
11+
- [Support Library] Fix error messages not appearing in CloudWatch
12+
913

1014
## [0.1.1] - 2020-05-02
1115
### Fixed
@@ -33,7 +37,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
3337
- [Support Library] Base Model class as well as Progress Event class
3438

3539

36-
[Unreleased]: https://github.com/eduardomourar/cloudformation-cli-typescript-plugin/compare/v0.1.1...HEAD
40+
[Unreleased]: https://github.com/eduardomourar/cloudformation-cli-typescript-plugin/compare/v0.1.2...HEAD
41+
[0.1.2]: https://github.com/eduardomourar/cloudformation-cli-typescript-plugin/compare/v0.1.1...v0.1.2
3742
[0.1.1]: https://github.com/eduardomourar/cloudformation-cli-typescript-plugin/compare/v0.1.0...v0.1.1
3843
[0.1.0]: https://github.com/eduardomourar/cloudformation-cli-typescript-plugin/compare/v0.0.1...v0.1.0
3944
[0.0.1]: https://github.com/eduardomourar/cloudformation-cli-typescript-plugin/releases/tag/v0.0.1

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "cfn-rpdk",
3-
"version": "0.1.1",
3+
"version": "0.1.2",
44
"description": "The CloudFormation Resource Provider Development Kit (RPDK) allows you to author your own resource providers that can be used by CloudFormation. This plugin library helps to provide runtime bindings for the execution of your providers by CloudFormation.",
55
"main": "dist/index.js",
66
"directories": {

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.1"
3+
__version__ = "0.1.2"
44

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

python/rpdk/typescript/codegen.py

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

1818
EXECUTABLE = "cfn"
1919
SUPPORT_LIB_NAME = "cfn-rpdk"
20-
SUPPORT_LIB_VERSION = "0.1.1"
20+
SUPPORT_LIB_VERSION = "0.1.2"
2121
MAIN_HANDLER_FUNCTION = "TypeFunction"
2222
REPO_URL = "https://github.com/eduardomourar/cloudformation-cli-typescript-plugin"
2323
REPO_RELEASE_SUFFIX = f"v{SUPPORT_LIB_VERSION}/cfn-rpdk-{SUPPORT_LIB_VERSION}.tgz"

0 commit comments

Comments
 (0)