Skip to content

Commit c5ba909

Browse files
committed
bump to v0.2.1
1 parent 5557d88 commit c5ba909

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,19 +6,24 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [0.2.1] - 2020-07-14
10+
### Fixed
11+
- [Support Library] Callback context not being properly formatted
12+
13+
914
## [0.2.0] - 2020-07-08
1015
### Added
11-
- [Support Library] Support protocol version 2.0.0 to response the handler result with callback directly and allow CloudFormation service to orchestrate the callback.
16+
- [Support Library] Support protocol version 2.0.0 to response the handler result with callback directly and allow CloudFormation service to orchestrate the callback
1217

1318

1419
## [0.1.2] - 2020-05-25
1520
### Fixed
16-
- [Support Library] Fix error messages not appearing in CloudWatch
21+
- [Support Library] Error messages not appearing in CloudWatch
1722

1823

1924
## [0.1.1] - 2020-05-02
2025
### Fixed
21-
- [Support Library] Fix event handler binding
26+
- [Support Library] Event handler binding issue
2227

2328

2429
## [0.1.0] - 2020-04-24
@@ -30,7 +35,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
3035
- [Support Library] Fallback to S3 in log delivery
3136

3237
### Fixed
33-
- [Support Library] Fix CloudWatch log delivery
38+
- [Support Library] CloudWatch log delivery issue
3439

3540

3641
## [0.0.1] - 2020-04-14
@@ -42,7 +47,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
4247
- [Support Library] Base Model class as well as Progress Event class
4348

4449

45-
[Unreleased]: https://github.com/eduardomourar/cloudformation-cli-typescript-plugin/compare/v0.2.0...HEAD
50+
[Unreleased]: https://github.com/eduardomourar/cloudformation-cli-typescript-plugin/compare/v0.2.1...HEAD
51+
[0.2.1]: https://github.com/eduardomourar/cloudformation-cli-typescript-plugin/compare/v0.2.0...v0.2.1
4652
[0.2.0]: https://github.com/eduardomourar/cloudformation-cli-typescript-plugin/compare/v0.1.2...v0.2.0
4753
[0.1.2]: https://github.com/eduardomourar/cloudformation-cli-typescript-plugin/compare/v0.1.1...v0.1.2
4854
[0.1.1]: https://github.com/eduardomourar/cloudformation-cli-typescript-plugin/compare/v0.1.0...v0.1.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.2.0",
3+
"version": "0.2.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.2.0"
3+
__version__ = "0.2.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.2.0"
20+
SUPPORT_LIB_VERSION = "0.2.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)