diff --git a/.changes/1.9.32.json b/.changes/1.9.32.json new file mode 100644 index 0000000000..4566b5e94d --- /dev/null +++ b/.changes/1.9.32.json @@ -0,0 +1,7 @@ +[ + { + "category": "``ec2``", + "description": "[``botocore``] Update ec2 client to latest version", + "type": "api-change" + } +] \ No newline at end of file diff --git a/.changes/next-release/api-change-ec2-37316.json b/.changes/next-release/api-change-ec2-37316.json deleted file mode 100644 index 6ebcd03779..0000000000 --- a/.changes/next-release/api-change-ec2-37316.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "category": "``ec2``", - "type": "api-change", - "description": "[``botocore``] Update ec2 client to latest version" -} diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 9ea2a52847..c6992fc131 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,12 @@ CHANGELOG ========= +1.9.32 +====== + +* api-change:``ec2``: [``botocore``] Update ec2 client to latest version + + 1.9.31 ====== diff --git a/boto3/__init__.py b/boto3/__init__.py index 4f1eb5aa7c..35a68c35d1 100644 --- a/boto3/__init__.py +++ b/boto3/__init__.py @@ -17,7 +17,7 @@ __author__ = 'Amazon Web Services' -__version__ = '1.9.31' +__version__ = '1.9.32' # The default Boto3 session; autoloaded when needed. diff --git a/setup.cfg b/setup.cfg index 27cb915b3e..cfc0fa51e6 100644 --- a/setup.cfg +++ b/setup.cfg @@ -3,6 +3,6 @@ universal = 1 [metadata] requires-dist = - botocore>=1.12.31,<1.13.0 + botocore>=1.12.32,<1.13.0 jmespath>=0.7.1,<1.0.0 s3transfer>=0.1.10,<0.2.0 diff --git a/setup.py b/setup.py index 7f613a0427..0c5eccc8a7 100644 --- a/setup.py +++ b/setup.py @@ -14,7 +14,7 @@ requires = [ - 'botocore>=1.12.31,<1.13.0', + 'botocore>=1.12.32,<1.13.0', 'jmespath>=0.7.1,<1.0.0', 's3transfer>=0.1.10,<0.2.0' ]