diff --git a/.changes/1.13.2.json b/.changes/1.13.2.json new file mode 100644 index 0000000000..8268312d17 --- /dev/null +++ b/.changes/1.13.2.json @@ -0,0 +1,17 @@ +[ + { + "category": "``apigateway``", + "description": "[``botocore``] Update apigateway client to latest version", + "type": "api-change" + }, + { + "category": "``ec2``", + "description": "[``botocore``] Update ec2 client to latest version", + "type": "api-change" + }, + { + "category": "``s3control``", + "description": "[``botocore``] Update s3control client to latest version", + "type": "api-change" + } +] \ No newline at end of file diff --git a/.changes/next-release/api-change-apigateway-73638.json b/.changes/next-release/api-change-apigateway-73638.json deleted file mode 100644 index ccf9587278..0000000000 --- a/.changes/next-release/api-change-apigateway-73638.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "category": "``apigateway``", - "type": "api-change", - "description": "[``botocore``] Update apigateway client to latest version" -} diff --git a/.changes/next-release/api-change-ec2-81856.json b/.changes/next-release/api-change-ec2-81856.json deleted file mode 100644 index 6ebcd03779..0000000000 --- a/.changes/next-release/api-change-ec2-81856.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "category": "``ec2``", - "type": "api-change", - "description": "[``botocore``] Update ec2 client to latest version" -} diff --git a/.changes/next-release/api-change-s3control-60726.json b/.changes/next-release/api-change-s3control-60726.json deleted file mode 100644 index 65aaadb5f5..0000000000 --- a/.changes/next-release/api-change-s3control-60726.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "category": "``s3control``", - "type": "api-change", - "description": "[``botocore``] Update s3control client to latest version" -} diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 4887f708dd..1b32f1aac6 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,14 @@ CHANGELOG ========= +1.13.2 +====== + +* api-change:``apigateway``: [``botocore``] Update apigateway client to latest version +* api-change:``ec2``: [``botocore``] Update ec2 client to latest version +* api-change:``s3control``: [``botocore``] Update s3control client to latest version + + 1.13.1 ====== diff --git a/boto3/__init__.py b/boto3/__init__.py index 739ef04003..d153e84043 100644 --- a/boto3/__init__.py +++ b/boto3/__init__.py @@ -17,7 +17,7 @@ __author__ = 'Amazon Web Services' -__version__ = '1.13.1' +__version__ = '1.13.2' # The default Boto3 session; autoloaded when needed. diff --git a/setup.cfg b/setup.cfg index 1cc9a8b571..f4f5895502 100644 --- a/setup.cfg +++ b/setup.cfg @@ -3,6 +3,6 @@ universal = 1 [metadata] requires-dist = - botocore>=1.16.1,<1.17.0 + botocore>=1.16.2,<1.17.0 jmespath>=0.7.1,<1.0.0 s3transfer>=0.3.0,<0.4.0 diff --git a/setup.py b/setup.py index 4028d131b8..e745254b70 100644 --- a/setup.py +++ b/setup.py @@ -14,7 +14,7 @@ requires = [ - 'botocore>=1.16.1,<1.17.0', + 'botocore>=1.16.2,<1.17.0', 'jmespath>=0.7.1,<1.0.0', 's3transfer>=0.3.0,<0.4.0' ]