From 37dd98d5309bf2a064dbe48f6de1974e32b0ac93 Mon Sep 17 00:00:00 2001 From: aws-sdk-python-automation Date: Mon, 21 Jun 2021 18:32:53 +0000 Subject: [PATCH 1/2] Add changelog entries from botocore --- .changes/next-release/api-change-cloudformation-57610.json | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 .changes/next-release/api-change-cloudformation-57610.json diff --git a/.changes/next-release/api-change-cloudformation-57610.json b/.changes/next-release/api-change-cloudformation-57610.json new file mode 100644 index 0000000000..ddf06a4c96 --- /dev/null +++ b/.changes/next-release/api-change-cloudformation-57610.json @@ -0,0 +1,5 @@ +{ + "category": "``cloudformation``", + "type": "api-change", + "description": "[``botocore``] CloudFormation registry service now supports 3rd party public type sharing" +} From dff85dd46d68ac051b8db9542d88a279e965b487 Mon Sep 17 00:00:00 2001 From: aws-sdk-python-automation Date: Mon, 21 Jun 2021 18:33:00 +0000 Subject: [PATCH 2/2] Bumping version to 1.17.98 --- .changes/1.17.98.json | 7 +++++++ .changes/next-release/api-change-cloudformation-57610.json | 5 ----- CHANGELOG.rst | 6 ++++++ boto3/__init__.py | 2 +- setup.cfg | 2 +- setup.py | 2 +- 6 files changed, 16 insertions(+), 8 deletions(-) create mode 100644 .changes/1.17.98.json delete mode 100644 .changes/next-release/api-change-cloudformation-57610.json diff --git a/.changes/1.17.98.json b/.changes/1.17.98.json new file mode 100644 index 0000000000..7ebf3947af --- /dev/null +++ b/.changes/1.17.98.json @@ -0,0 +1,7 @@ +[ + { + "category": "``cloudformation``", + "description": "[``botocore``] CloudFormation registry service now supports 3rd party public type sharing", + "type": "api-change" + } +] \ No newline at end of file diff --git a/.changes/next-release/api-change-cloudformation-57610.json b/.changes/next-release/api-change-cloudformation-57610.json deleted file mode 100644 index ddf06a4c96..0000000000 --- a/.changes/next-release/api-change-cloudformation-57610.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "category": "``cloudformation``", - "type": "api-change", - "description": "[``botocore``] CloudFormation registry service now supports 3rd party public type sharing" -} diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 4109afa549..f8bed1b2ce 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,12 @@ CHANGELOG ========= +1.17.98 +======= + +* api-change:``cloudformation``: [``botocore``] CloudFormation registry service now supports 3rd party public type sharing + + 1.17.97 ======= diff --git a/boto3/__init__.py b/boto3/__init__.py index 4ac2058ae1..95cf080686 100644 --- a/boto3/__init__.py +++ b/boto3/__init__.py @@ -18,7 +18,7 @@ __author__ = 'Amazon Web Services' -__version__ = '1.17.97' +__version__ = '1.17.98' # The default Boto3 session; autoloaded when needed. diff --git a/setup.cfg b/setup.cfg index 292281cbc3..3b243a7eae 100644 --- a/setup.cfg +++ b/setup.cfg @@ -3,6 +3,6 @@ universal = 1 [metadata] requires_dist = - botocore>=1.20.97,<1.21.0 + botocore>=1.20.98,<1.21.0 jmespath>=0.7.1,<1.0.0 s3transfer>=0.4.0,<0.5.0 diff --git a/setup.py b/setup.py index 733c3742d2..af9652b361 100644 --- a/setup.py +++ b/setup.py @@ -14,7 +14,7 @@ requires = [ - 'botocore>=1.20.97,<1.21.0', + 'botocore>=1.20.98,<1.21.0', 'jmespath>=0.7.1,<1.0.0', 's3transfer>=0.4.0,<0.5.0' ]