From 21855edb4ee4312528dc9846cdec123cdd189620 Mon Sep 17 00:00:00 2001 From: aws-sdk-python-automation Date: Mon, 13 Sep 2021 18:09:42 +0000 Subject: [PATCH] Bumping version to 1.18.41 --- .changes/1.18.41.json | 17 +++++++++++++++++ .changes/next-release/api-change-ec2-14136.json | 5 ----- .changes/next-release/api-change-iot-71577.json | 5 ----- .../enhancement-TaggedUnions-30097.json | 5 ----- CHANGELOG.rst | 8 ++++++++ boto3/__init__.py | 2 +- setup.cfg | 2 +- setup.py | 2 +- 8 files changed, 28 insertions(+), 18 deletions(-) create mode 100644 .changes/1.18.41.json delete mode 100644 .changes/next-release/api-change-ec2-14136.json delete mode 100644 .changes/next-release/api-change-iot-71577.json delete mode 100644 .changes/next-release/enhancement-TaggedUnions-30097.json diff --git a/.changes/1.18.41.json b/.changes/1.18.41.json new file mode 100644 index 0000000000..e49c92aa0c --- /dev/null +++ b/.changes/1.18.41.json @@ -0,0 +1,17 @@ +[ + { + "category": "``iot``", + "description": "[``botocore``] AWS IoT Rules Engine adds OpenSearch action. The OpenSearch rule action lets you stream data from IoT sensors and applications to Amazon OpenSearch Service which is a successor to Amazon Elasticsearch Service.", + "type": "api-change" + }, + { + "category": "``ec2``", + "description": "[``botocore``] Adds support for T3 instances on Amazon EC2 Dedicated Hosts.", + "type": "api-change" + }, + { + "category": "Tagged Unions", + "description": "[``botocore``] Introducing support for the `union` trait on structures in request and response objects.", + "type": "enhancement" + } +] \ No newline at end of file diff --git a/.changes/next-release/api-change-ec2-14136.json b/.changes/next-release/api-change-ec2-14136.json deleted file mode 100644 index 29f3461fd8..0000000000 --- a/.changes/next-release/api-change-ec2-14136.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``ec2``", - "description": "[``botocore``] Adds support for T3 instances on Amazon EC2 Dedicated Hosts." -} diff --git a/.changes/next-release/api-change-iot-71577.json b/.changes/next-release/api-change-iot-71577.json deleted file mode 100644 index 5511d41a71..0000000000 --- a/.changes/next-release/api-change-iot-71577.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``iot``", - "description": "[``botocore``] AWS IoT Rules Engine adds OpenSearch action. The OpenSearch rule action lets you stream data from IoT sensors and applications to Amazon OpenSearch Service which is a successor to Amazon Elasticsearch Service." -} diff --git a/.changes/next-release/enhancement-TaggedUnions-30097.json b/.changes/next-release/enhancement-TaggedUnions-30097.json deleted file mode 100644 index 57952e9dff..0000000000 --- a/.changes/next-release/enhancement-TaggedUnions-30097.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "category": "Tagged Unions", - "type": "enhancement", - "description": "[``botocore``] Introducing support for the `union` trait on structures in request and response objects." -} diff --git a/CHANGELOG.rst b/CHANGELOG.rst index e5ca3b957b..d24ff390c4 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,14 @@ CHANGELOG ========= +1.18.41 +======= + +* api-change:``iot``: [``botocore``] AWS IoT Rules Engine adds OpenSearch action. The OpenSearch rule action lets you stream data from IoT sensors and applications to Amazon OpenSearch Service which is a successor to Amazon Elasticsearch Service. +* api-change:``ec2``: [``botocore``] Adds support for T3 instances on Amazon EC2 Dedicated Hosts. +* enhancement:Tagged Unions: [``botocore``] Introducing support for the `union` trait on structures in request and response objects. + + 1.18.40 ======= diff --git a/boto3/__init__.py b/boto3/__init__.py index 95d65ec78d..a0808b2594 100644 --- a/boto3/__init__.py +++ b/boto3/__init__.py @@ -18,7 +18,7 @@ __author__ = 'Amazon Web Services' -__version__ = '1.18.40' +__version__ = '1.18.41' # The default Boto3 session; autoloaded when needed. diff --git a/setup.cfg b/setup.cfg index fc8291ed96..235bfd52fa 100644 --- a/setup.cfg +++ b/setup.cfg @@ -3,7 +3,7 @@ universal = 0 [metadata] requires_dist = - botocore>=1.21.40,<1.22.0 + botocore>=1.21.41,<1.22.0 jmespath>=0.7.1,<1.0.0 s3transfer>=0.5.0,<0.6.0 diff --git a/setup.py b/setup.py index 0e55808a2f..4c8acb5bd6 100644 --- a/setup.py +++ b/setup.py @@ -14,7 +14,7 @@ requires = [ - 'botocore>=1.21.40,<1.22.0', + 'botocore>=1.21.41,<1.22.0', 'jmespath>=0.7.1,<1.0.0', 's3transfer>=0.5.0,<0.6.0' ]