From 895e63149c12b3992341eacfe4d49f4e54b23012 Mon Sep 17 00:00:00 2001 From: aws-sdk-python-automation Date: Wed, 16 Aug 2023 18:21:25 +0000 Subject: [PATCH 1/2] Add changelog entries from botocore --- .changes/next-release/api-change-cloudwatch-75213.json | 5 +++++ .changes/next-release/api-change-lexv2models-74711.json | 5 +++++ 2 files changed, 10 insertions(+) create mode 100644 .changes/next-release/api-change-cloudwatch-75213.json create mode 100644 .changes/next-release/api-change-lexv2models-74711.json diff --git a/.changes/next-release/api-change-cloudwatch-75213.json b/.changes/next-release/api-change-cloudwatch-75213.json new file mode 100644 index 0000000000..0a79f143d9 --- /dev/null +++ b/.changes/next-release/api-change-cloudwatch-75213.json @@ -0,0 +1,5 @@ +{ + "type": "api-change", + "category": "``cloudwatch``", + "description": "[``botocore``] Update cloudwatch client to latest version" +} diff --git a/.changes/next-release/api-change-lexv2models-74711.json b/.changes/next-release/api-change-lexv2models-74711.json new file mode 100644 index 0000000000..7d14fc27a2 --- /dev/null +++ b/.changes/next-release/api-change-lexv2models-74711.json @@ -0,0 +1,5 @@ +{ + "type": "api-change", + "category": "``lexv2-models``", + "description": "[``botocore``] Update lexv2-models client to latest version" +} From f51edc94e5ed28419ea76f2ef986156b0ab9d5bc Mon Sep 17 00:00:00 2001 From: aws-sdk-python-automation Date: Wed, 16 Aug 2023 18:21:46 +0000 Subject: [PATCH 2/2] Bumping version to 1.28.28 --- .changes/1.28.28.json | 12 ++++++++++++ .../next-release/api-change-cloudwatch-75213.json | 5 ----- .../next-release/api-change-lexv2models-74711.json | 5 ----- CHANGELOG.rst | 7 +++++++ boto3/__init__.py | 2 +- setup.cfg | 2 +- setup.py | 2 +- 7 files changed, 22 insertions(+), 13 deletions(-) create mode 100644 .changes/1.28.28.json delete mode 100644 .changes/next-release/api-change-cloudwatch-75213.json delete mode 100644 .changes/next-release/api-change-lexv2models-74711.json diff --git a/.changes/1.28.28.json b/.changes/1.28.28.json new file mode 100644 index 0000000000..5081853124 --- /dev/null +++ b/.changes/1.28.28.json @@ -0,0 +1,12 @@ +[ + { + "category": "``cloudwatch``", + "description": "[``botocore``] Update cloudwatch client to latest version", + "type": "api-change" + }, + { + "category": "``lexv2-models``", + "description": "[``botocore``] Update lexv2-models client to latest version", + "type": "api-change" + } +] \ No newline at end of file diff --git a/.changes/next-release/api-change-cloudwatch-75213.json b/.changes/next-release/api-change-cloudwatch-75213.json deleted file mode 100644 index 0a79f143d9..0000000000 --- a/.changes/next-release/api-change-cloudwatch-75213.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``cloudwatch``", - "description": "[``botocore``] Update cloudwatch client to latest version" -} diff --git a/.changes/next-release/api-change-lexv2models-74711.json b/.changes/next-release/api-change-lexv2models-74711.json deleted file mode 100644 index 7d14fc27a2..0000000000 --- a/.changes/next-release/api-change-lexv2models-74711.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``lexv2-models``", - "description": "[``botocore``] Update lexv2-models client to latest version" -} diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 750c59e96c..be418b9a58 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,13 @@ CHANGELOG ========= +1.28.28 +======= + +* api-change:``cloudwatch``: [``botocore``] Update cloudwatch client to latest version +* api-change:``lexv2-models``: [``botocore``] Update lexv2-models client to latest version + + 1.28.27 ======= diff --git a/boto3/__init__.py b/boto3/__init__.py index dcf2b0ff44..81858bfa2b 100644 --- a/boto3/__init__.py +++ b/boto3/__init__.py @@ -17,7 +17,7 @@ from boto3.session import Session __author__ = 'Amazon Web Services' -__version__ = '1.28.27' +__version__ = '1.28.28' # The default Boto3 session; autoloaded when needed. diff --git a/setup.cfg b/setup.cfg index d9521fe267..2a58b06dea 100644 --- a/setup.cfg +++ b/setup.cfg @@ -3,7 +3,7 @@ universal = 0 [metadata] requires_dist = - botocore>=1.31.27,<1.32.0 + botocore>=1.31.28,<1.32.0 jmespath>=0.7.1,<2.0.0 s3transfer>=0.6.0,<0.7.0 diff --git a/setup.py b/setup.py index de9e3d20e2..2bdf66044f 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ requires = [ - 'botocore>=1.31.27,<1.32.0', + 'botocore>=1.31.28,<1.32.0', 'jmespath>=0.7.1,<2.0.0', 's3transfer>=0.6.0,<0.7.0', ]