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' ]