From 35f765cbfade4f5411ee44d2fab281c0ffc12fa0 Mon Sep 17 00:00:00 2001 From: aws-sdk-python-automation Date: Tue, 23 Jan 2024 01:11:00 +0000 Subject: [PATCH] Bumping version to 1.32.25 --- .changes/1.32.25.json | 7 +++++++ .changes/next-release/bugfix-s3sync-90191.json | 5 ----- CHANGELOG.rst | 6 ++++++ awscli/__init__.py | 2 +- doc/source/conf.py | 2 +- setup.cfg | 2 +- setup.py | 2 +- 7 files changed, 17 insertions(+), 9 deletions(-) create mode 100644 .changes/1.32.25.json delete mode 100644 .changes/next-release/bugfix-s3sync-90191.json diff --git a/.changes/1.32.25.json b/.changes/1.32.25.json new file mode 100644 index 000000000000..6e07b40ff724 --- /dev/null +++ b/.changes/1.32.25.json @@ -0,0 +1,7 @@ +[ + { + "category": "``s3 sync``", + "description": "Disable S3 Express support for s3 sync command", + "type": "bugfix" + } +] \ No newline at end of file diff --git a/.changes/next-release/bugfix-s3sync-90191.json b/.changes/next-release/bugfix-s3sync-90191.json deleted file mode 100644 index cd1747b15af6..000000000000 --- a/.changes/next-release/bugfix-s3sync-90191.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "bugfix", - "category": "``s3 sync``", - "description": "Disable S3 Express support for s3 sync command" -} diff --git a/CHANGELOG.rst b/CHANGELOG.rst index a67e75114e9a..4f911560e16e 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,12 @@ CHANGELOG ========= +1.32.25 +======= + +* bugfix:``s3 sync``: Disable S3 Express support for s3 sync command + + 1.32.24 ======= diff --git a/awscli/__init__.py b/awscli/__init__.py index 2b4fd7f548a9..f3b242159ef5 100644 --- a/awscli/__init__.py +++ b/awscli/__init__.py @@ -17,7 +17,7 @@ """ import os -__version__ = '1.32.24' +__version__ = '1.32.25' # # Get our data path to be added to botocore's search path diff --git a/doc/source/conf.py b/doc/source/conf.py index 5c3e12de17bf..10e7d2b9a594 100644 --- a/doc/source/conf.py +++ b/doc/source/conf.py @@ -52,7 +52,7 @@ # The short X.Y version. version = '1.32.' # The full version, including alpha/beta/rc tags. -release = '1.32.24' +release = '1.32.25' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/setup.cfg b/setup.cfg index 3fd82fd92f43..526764960fdd 100644 --- a/setup.cfg +++ b/setup.cfg @@ -3,7 +3,7 @@ universal = 0 [metadata] requires_dist = - botocore==1.34.24 + botocore==1.34.25 docutils>=0.10,<0.17 s3transfer>=0.10.0,<0.11.0 PyYAML>=3.10,<6.1 diff --git a/setup.py b/setup.py index b294badaa814..8ab8c9d90a2a 100644 --- a/setup.py +++ b/setup.py @@ -24,7 +24,7 @@ def find_version(*file_paths): install_requires = [ - 'botocore==1.34.24', + 'botocore==1.34.25', 'docutils>=0.10,<0.17', 's3transfer>=0.10.0,<0.11.0', 'PyYAML>=3.10,<6.1',