From ca64d445e0b97e33f004928a96b3f5107e85928d Mon Sep 17 00:00:00 2001 From: aws-sdk-python-automation Date: Wed, 8 Sep 2021 18:36:16 +0000 Subject: [PATCH] Bumping version to 1.18.38 --- .changes/1.18.38.json | 17 +++++++++++++++++ .../next-release/api-change-kafka-16711.json | 5 ----- .../api-change-opensearch-53353.json | 5 ----- .changes/next-release/api-change-ram-40675.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.38.json delete mode 100644 .changes/next-release/api-change-kafka-16711.json delete mode 100644 .changes/next-release/api-change-opensearch-53353.json delete mode 100644 .changes/next-release/api-change-ram-40675.json diff --git a/.changes/1.18.38.json b/.changes/1.18.38.json new file mode 100644 index 0000000000..fa85f83073 --- /dev/null +++ b/.changes/1.18.38.json @@ -0,0 +1,17 @@ +[ + { + "category": "``opensearch``", + "description": "[``botocore``] Updated Configuration APIs for Amazon OpenSearch Service (successor to Amazon Elasticsearch Service)", + "type": "api-change" + }, + { + "category": "``ram``", + "description": "[``botocore``] A minor text-only update that fixes several customer issues.", + "type": "api-change" + }, + { + "category": "``kafka``", + "description": "[``botocore``] Amazon MSK has added a new API that allows you to update the encrypting and authentication settings for an existing cluster.", + "type": "api-change" + } +] \ No newline at end of file diff --git a/.changes/next-release/api-change-kafka-16711.json b/.changes/next-release/api-change-kafka-16711.json deleted file mode 100644 index b157b7abcf..0000000000 --- a/.changes/next-release/api-change-kafka-16711.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``kafka``", - "description": "[``botocore``] Amazon MSK has added a new API that allows you to update the encrypting and authentication settings for an existing cluster." -} diff --git a/.changes/next-release/api-change-opensearch-53353.json b/.changes/next-release/api-change-opensearch-53353.json deleted file mode 100644 index 68dcf515c6..0000000000 --- a/.changes/next-release/api-change-opensearch-53353.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``opensearch``", - "description": "[``botocore``] Updated Configuration APIs for Amazon OpenSearch Service (successor to Amazon Elasticsearch Service)" -} diff --git a/.changes/next-release/api-change-ram-40675.json b/.changes/next-release/api-change-ram-40675.json deleted file mode 100644 index fdcb6d2b9f..0000000000 --- a/.changes/next-release/api-change-ram-40675.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``ram``", - "description": "[``botocore``] A minor text-only update that fixes several customer issues." -} diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 2f8de18b6c..09bd8d8539 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,14 @@ CHANGELOG ========= +1.18.38 +======= + +* api-change:``opensearch``: [``botocore``] Updated Configuration APIs for Amazon OpenSearch Service (successor to Amazon Elasticsearch Service) +* api-change:``ram``: [``botocore``] A minor text-only update that fixes several customer issues. +* api-change:``kafka``: [``botocore``] Amazon MSK has added a new API that allows you to update the encrypting and authentication settings for an existing cluster. + + 1.18.37 ======= diff --git a/boto3/__init__.py b/boto3/__init__.py index 21bcf1267e..2a00afa13a 100644 --- a/boto3/__init__.py +++ b/boto3/__init__.py @@ -18,7 +18,7 @@ __author__ = 'Amazon Web Services' -__version__ = '1.18.37' +__version__ = '1.18.38' # The default Boto3 session; autoloaded when needed. diff --git a/setup.cfg b/setup.cfg index fa7b97ff55..1f53cd3928 100644 --- a/setup.cfg +++ b/setup.cfg @@ -3,7 +3,7 @@ universal = 0 [metadata] requires_dist = - botocore>=1.21.37,<1.22.0 + botocore>=1.21.38,<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 3bcdb97d00..3eef58ecbb 100644 --- a/setup.py +++ b/setup.py @@ -14,7 +14,7 @@ requires = [ - 'botocore>=1.21.37,<1.22.0', + 'botocore>=1.21.38,<1.22.0', 'jmespath>=0.7.1,<1.0.0', 's3transfer>=0.5.0,<0.6.0' ]