diff --git a/.changes/1.9.140.json b/.changes/1.9.140.json new file mode 100644 index 0000000000..f84f3d33e7 --- /dev/null +++ b/.changes/1.9.140.json @@ -0,0 +1,17 @@ +[ + { + "category": "``ecs``", + "description": "[``botocore``] Update ecs client to latest version", + "type": "api-change" + }, + { + "category": "``xray``", + "description": "[``botocore``] Update xray client to latest version", + "type": "api-change" + }, + { + "category": "``ec2``", + "description": "[``botocore``] Update ec2 client to latest version", + "type": "api-change" + } +] \ No newline at end of file diff --git a/CHANGELOG.rst b/CHANGELOG.rst index c64d060012..0db988f97f 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,14 @@ CHANGELOG ========= +1.9.140 +======= + +* api-change:``ecs``: [``botocore``] Update ecs client to latest version +* api-change:``xray``: [``botocore``] Update xray client to latest version +* api-change:``ec2``: [``botocore``] Update ec2 client to latest version + + 1.9.139 ======= diff --git a/boto3/__init__.py b/boto3/__init__.py index fe8ebd0cd0..5015619405 100644 --- a/boto3/__init__.py +++ b/boto3/__init__.py @@ -17,7 +17,7 @@ __author__ = 'Amazon Web Services' -__version__ = '1.9.139' +__version__ = '1.9.140' # The default Boto3 session; autoloaded when needed. diff --git a/setup.cfg b/setup.cfg index 624e8133a4..2167bac10f 100644 --- a/setup.cfg +++ b/setup.cfg @@ -3,6 +3,6 @@ universal = 1 [metadata] requires-dist = - botocore>=1.12.139,<1.13.0 + botocore>=1.12.140,<1.13.0 jmespath>=0.7.1,<1.0.0 s3transfer>=0.2.0,<0.3.0 diff --git a/setup.py b/setup.py index 57e11523a2..5d84519f16 100644 --- a/setup.py +++ b/setup.py @@ -14,7 +14,7 @@ requires = [ - 'botocore>=1.12.139,<1.13.0', + 'botocore>=1.12.140,<1.13.0', 'jmespath>=0.7.1,<1.0.0', 's3transfer>=0.2.0,<0.3.0' ]