diff --git a/.changes/1.15.11.json b/.changes/1.15.11.json new file mode 100644 index 0000000000..8563b2d2a7 --- /dev/null +++ b/.changes/1.15.11.json @@ -0,0 +1,32 @@ +[ + { + "category": "``batch``", + "description": "[``botocore``] Update batch client to latest version", + "type": "api-change" + }, + { + "category": "``personalize-events``", + "description": "[``botocore``] Update personalize-events client to latest version", + "type": "api-change" + }, + { + "category": "``rds``", + "description": "[``botocore``] Update rds client to latest version", + "type": "api-change" + }, + { + "category": "``elbv2``", + "description": "[``botocore``] Update elbv2 client to latest version", + "type": "api-change" + }, + { + "category": "``servicediscovery``", + "description": "[``botocore``] Update servicediscovery client to latest version", + "type": "api-change" + }, + { + "category": "``s3``", + "description": "[``botocore``] Update s3 client to latest version", + "type": "api-change" + } +] \ No newline at end of file diff --git a/.changes/next-release/api-change-batch-18517.json b/.changes/next-release/api-change-batch-18517.json deleted file mode 100644 index d793a062dd..0000000000 --- a/.changes/next-release/api-change-batch-18517.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "category": "``batch``", - "type": "api-change", - "description": "[``botocore``] Update batch client to latest version" -} diff --git a/.changes/next-release/api-change-elbv2-39811.json b/.changes/next-release/api-change-elbv2-39811.json deleted file mode 100644 index dc586dea0a..0000000000 --- a/.changes/next-release/api-change-elbv2-39811.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "category": "``elbv2``", - "type": "api-change", - "description": "[``botocore``] Update elbv2 client to latest version" -} diff --git a/.changes/next-release/api-change-personalizeevents-14700.json b/.changes/next-release/api-change-personalizeevents-14700.json deleted file mode 100644 index ed09dc4f32..0000000000 --- a/.changes/next-release/api-change-personalizeevents-14700.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "category": "``personalize-events``", - "type": "api-change", - "description": "[``botocore``] Update personalize-events client to latest version" -} diff --git a/.changes/next-release/api-change-rds-45746.json b/.changes/next-release/api-change-rds-45746.json deleted file mode 100644 index eb52680b11..0000000000 --- a/.changes/next-release/api-change-rds-45746.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "category": "``rds``", - "type": "api-change", - "description": "[``botocore``] Update rds client to latest version" -} diff --git a/.changes/next-release/api-change-s3-82974.json b/.changes/next-release/api-change-s3-82974.json deleted file mode 100644 index 1a71727fd9..0000000000 --- a/.changes/next-release/api-change-s3-82974.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "category": "``s3``", - "type": "api-change", - "description": "[``botocore``] Update s3 client to latest version" -} diff --git a/.changes/next-release/api-change-servicediscovery-84662.json b/.changes/next-release/api-change-servicediscovery-84662.json deleted file mode 100644 index e405c5ccae..0000000000 --- a/.changes/next-release/api-change-servicediscovery-84662.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "category": "``servicediscovery``", - "type": "api-change", - "description": "[``botocore``] Update servicediscovery client to latest version" -} diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 2a09397f78..f4cb897fde 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,17 @@ CHANGELOG ========= +1.15.11 +======= + +* api-change:``batch``: [``botocore``] Update batch client to latest version +* api-change:``personalize-events``: [``botocore``] Update personalize-events client to latest version +* api-change:``rds``: [``botocore``] Update rds client to latest version +* api-change:``elbv2``: [``botocore``] Update elbv2 client to latest version +* api-change:``servicediscovery``: [``botocore``] Update servicediscovery client to latest version +* api-change:``s3``: [``botocore``] Update s3 client to latest version + + 1.15.10 ======= diff --git a/boto3/__init__.py b/boto3/__init__.py index d7a04f8d48..8694dc2926 100644 --- a/boto3/__init__.py +++ b/boto3/__init__.py @@ -17,7 +17,7 @@ __author__ = 'Amazon Web Services' -__version__ = '1.15.10' +__version__ = '1.15.11' # The default Boto3 session; autoloaded when needed. diff --git a/setup.cfg b/setup.cfg index 7a18ac18a5..4ff5dc5b5b 100644 --- a/setup.cfg +++ b/setup.cfg @@ -3,6 +3,6 @@ universal = 1 [metadata] requires-dist = - botocore>=1.18.10,<1.19.0 + botocore>=1.18.11,<1.19.0 jmespath>=0.7.1,<1.0.0 s3transfer>=0.3.0,<0.4.0 diff --git a/setup.py b/setup.py index bf6a2d4db8..736b4922f8 100644 --- a/setup.py +++ b/setup.py @@ -14,7 +14,7 @@ requires = [ - 'botocore>=1.18.10,<1.19.0', + 'botocore>=1.18.11,<1.19.0', 'jmespath>=0.7.1,<1.0.0', 's3transfer>=0.3.0,<0.4.0' ]