Skip to content

Commit e4c14e0

Browse files
committed
bump to v0.3.1
1 parent 15e8ab7 commit e4c14e0

File tree

5 files changed

+15
-9
lines changed

5 files changed

+15
-9
lines changed

CHANGELOG.md

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

77
## [Unreleased]
88

9+
## [0.3.1] - 2020-08-19
10+
### Fixed
11+
- [Support Library] Cast from empty string to number or boolean (#22)
12+
13+
914
## [0.3.0] - 2020-08-09
1015
### Added
1116
- [CLI Plugin] Primary and additional identifiers can be retrieved using the appropriate methods in base model class
12-
- [Support Library] Recast properties from string to intended primitive type based on model
17+
- [Support Library] Recast properties from string to intended primitive type based on model (#9)
1318
- [Support Library] New wrapper class for integer types (simplification from bigint)
1419

1520
### Changed
@@ -22,17 +27,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2227

2328
## [0.2.1] - 2020-07-14
2429
### Fixed
25-
- [Support Library] Callback context not being properly formatted
30+
- [Support Library] Callback context not being properly formatted (#15)
2631

2732

2833
## [0.2.0] - 2020-07-08
2934
### Added
30-
- [Support Library] Support protocol version 2.0.0 to response the handler result with callback directly and allow CloudFormation service to orchestrate the callback
35+
- [Support Library] Support protocol version 2.0.0 to response the handler result with callback directly and allow CloudFormation service to orchestrate the callback (#12)
3136

3237

3338
## [0.1.2] - 2020-05-25
3439
### Fixed
35-
- [Support Library] Error messages not appearing in CloudWatch
40+
- [Support Library] Error messages not appearing in CloudWatch (#10)
3641

3742

3843
## [0.1.1] - 2020-05-02
@@ -61,7 +66,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
6166
- [Support Library] Base Model class as well as Progress Event class
6267

6368

64-
[Unreleased]: https://github.com/eduardomourar/cloudformation-cli-typescript-plugin/compare/v0.3.0...HEAD
69+
[Unreleased]: https://github.com/eduardomourar/cloudformation-cli-typescript-plugin/compare/v0.3.1...HEAD
70+
[0.3.1]: https://github.com/eduardomourar/cloudformation-cli-typescript-plugin/compare/v0.3.0...v0.3.1
6571
[0.3.0]: https://github.com/eduardomourar/cloudformation-cli-typescript-plugin/compare/v0.2.1...v0.3.0
6672
[0.2.1]: https://github.com/eduardomourar/cloudformation-cli-typescript-plugin/compare/v0.2.0...v0.2.1
6773
[0.2.0]: https://github.com/eduardomourar/cloudformation-cli-typescript-plugin/compare/v0.1.2...v0.2.0

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.3.0",
3+
"version": "0.3.1",
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.3.0"
3+
__version__ = "0.3.1"
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.3.0"
20+
SUPPORT_LIB_VERSION = "0.3.1"
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)