diff --git a/.changes/1.25.50.json b/.changes/1.25.50.json new file mode 100644 index 000000000000..f2217070cc25 --- /dev/null +++ b/.changes/1.25.50.json @@ -0,0 +1,17 @@ +[ + { + "category": "``backupstorage``", + "description": "This is the first public release of AWS Backup Storage. We are exposing some previously-internal APIs for use by external services. These APIs are not meant to be used directly by customers.", + "type": "api-change" + }, + { + "category": "``glue``", + "description": "Add support for Python 3.9 AWS Glue Python Shell jobs", + "type": "api-change" + }, + { + "category": "``privatenetworks``", + "description": "This is the initial SDK release for AWS Private 5G. AWS Private 5G is a managed service that makes it easy to deploy, operate, and scale your own private mobile network at your on-premises location.", + "type": "api-change" + } +] \ No newline at end of file diff --git a/.changes/next-release/api-change-backupstorage-22564.json b/.changes/next-release/api-change-backupstorage-22564.json deleted file mode 100644 index a2d96dbfca35..000000000000 --- a/.changes/next-release/api-change-backupstorage-22564.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``backupstorage``", - "description": "This is the first public release of AWS Backup Storage. We are exposing some previously-internal APIs for use by external services. These APIs are not meant to be used directly by customers." -} diff --git a/.changes/next-release/api-change-glue-87322.json b/.changes/next-release/api-change-glue-87322.json deleted file mode 100644 index ec21d87e267c..000000000000 --- a/.changes/next-release/api-change-glue-87322.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``glue``", - "description": "Add support for Python 3.9 AWS Glue Python Shell jobs" -} diff --git a/.changes/next-release/api-change-privatenetworks-58466.json b/.changes/next-release/api-change-privatenetworks-58466.json deleted file mode 100644 index 14a3a78eb3e3..000000000000 --- a/.changes/next-release/api-change-privatenetworks-58466.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``privatenetworks``", - "description": "This is the initial SDK release for AWS Private 5G. AWS Private 5G is a managed service that makes it easy to deploy, operate, and scale your own private mobile network at your on-premises location." -} diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 983329f7b168..a98b9e051d69 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,14 @@ CHANGELOG ========= +1.25.50 +======= + +* api-change:``backupstorage``: This is the first public release of AWS Backup Storage. We are exposing some previously-internal APIs for use by external services. These APIs are not meant to be used directly by customers. +* api-change:``glue``: Add support for Python 3.9 AWS Glue Python Shell jobs +* api-change:``privatenetworks``: This is the initial SDK release for AWS Private 5G. AWS Private 5G is a managed service that makes it easy to deploy, operate, and scale your own private mobile network at your on-premises location. + + 1.25.49 ======= diff --git a/awscli/__init__.py b/awscli/__init__.py index f3220b6ec75b..85366ad1f8a8 100644 --- a/awscli/__init__.py +++ b/awscli/__init__.py @@ -17,7 +17,7 @@ """ import os -__version__ = '1.25.49' +__version__ = '1.25.50' # # 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 13d2f3d37f26..1ca16f46086b 100644 --- a/doc/source/conf.py +++ b/doc/source/conf.py @@ -52,7 +52,7 @@ # The short X.Y version. version = '1.25.' # The full version, including alpha/beta/rc tags. -release = '1.25.49' +release = '1.25.50' # 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 e1e7e577e627..a814a322b7a7 100644 --- a/setup.cfg +++ b/setup.cfg @@ -3,7 +3,7 @@ universal = 0 [metadata] requires_dist = - botocore==1.27.49 + botocore==1.27.50 docutils>=0.10,<0.17 s3transfer>=0.6.0,<0.7.0 PyYAML>=3.10,<5.5 diff --git a/setup.py b/setup.py index a7c9225199b5..78624ab6fbb3 100644 --- a/setup.py +++ b/setup.py @@ -24,7 +24,7 @@ def find_version(*file_paths): install_requires = [ - 'botocore==1.27.49', + 'botocore==1.27.50', 'docutils>=0.10,<0.17', 's3transfer>=0.6.0,<0.7.0', 'PyYAML>=3.10,<5.5',