Skip to content

Commit 7b33efd

Browse files
authored
Bump version (#369)
Update resource schema and cloudformation cli versions to correspond to type config support
1 parent cda61c7 commit 7b33efd

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<modelVersion>4.0.0</modelVersion>
44
<groupId>software.amazon.cloudformation</groupId>
55
<artifactId>aws-cloudformation-rpdk-java-plugin</artifactId>
6-
<version>2.0.5</version>
6+
<version>2.0.6</version>
77
<name>AWS CloudFormation RPDK Java Plugin</name>
88
<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.
99
</description>
@@ -71,7 +71,7 @@
7171
<dependency>
7272
<groupId>software.amazon.cloudformation</groupId>
7373
<artifactId>aws-cloudformation-resource-schema</artifactId>
74-
<version>[2.0.0, 3.0.0)</version>
74+
<version>[2.0.5, 3.0.0)</version>
7575
</dependency>
7676
<!-- https://mvnrepository.com/artifact/com.fasterxml.jackson.dataformat/jackson-databind -->
7777
<dependency>

python/rpdk/java/__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__ = "2.0.5"
3+
__version__ = "2.0.6"
44

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

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ def find_version(*file_paths):
3636
# package_data -> use MANIFEST.in instead
3737
include_package_data=True,
3838
zip_safe=True,
39-
install_requires=["cloudformation-cli>=0.1.14"],
39+
install_requires=["cloudformation-cli>=0.2.13"],
4040
python_requires=">=3.6",
4141
entry_points={"rpdk.v1.languages": ["java = rpdk.java.codegen:JavaLanguagePlugin"]},
4242
license="Apache License 2.0",

0 commit comments

Comments
 (0)