diff --git a/.changes/1.27.85.json b/.changes/1.27.85.json new file mode 100644 index 000000000000..2caafa6dd8a7 --- /dev/null +++ b/.changes/1.27.85.json @@ -0,0 +1,12 @@ +[ + { + "category": "``account``", + "description": "AWS Account alternate contact email addresses can now have a length of 254 characters and contain the character \"|\".", + "type": "api-change" + }, + { + "category": "``ivs``", + "description": "Updated text description in DeleteChannel, Stream, and StreamSummary.", + "type": "api-change" + } +] \ No newline at end of file diff --git a/.changes/next-release/api-change-account-81049.json b/.changes/next-release/api-change-account-81049.json deleted file mode 100644 index 0b8f856ea66f..000000000000 --- a/.changes/next-release/api-change-account-81049.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``account``", - "description": "AWS Account alternate contact email addresses can now have a length of 254 characters and contain the character \"|\"." -} diff --git a/.changes/next-release/api-change-ivs-79720.json b/.changes/next-release/api-change-ivs-79720.json deleted file mode 100644 index 922d18c821a4..000000000000 --- a/.changes/next-release/api-change-ivs-79720.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``ivs``", - "description": "Updated text description in DeleteChannel, Stream, and StreamSummary." -} diff --git a/CHANGELOG.rst b/CHANGELOG.rst index f4fee0239098..46d7aaba84af 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,13 @@ CHANGELOG ========= +1.27.85 +======= + +* api-change:``account``: AWS Account alternate contact email addresses can now have a length of 254 characters and contain the character "|". +* api-change:``ivs``: Updated text description in DeleteChannel, Stream, and StreamSummary. + + 1.27.84 ======= diff --git a/awscli/__init__.py b/awscli/__init__.py index 8fbeaada2e45..edcdd4bdc0bb 100644 --- a/awscli/__init__.py +++ b/awscli/__init__.py @@ -17,7 +17,7 @@ """ import os -__version__ = '1.27.84' +__version__ = '1.27.85' # # 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 9c7f29b0b012..9b7d464322e9 100644 --- a/doc/source/conf.py +++ b/doc/source/conf.py @@ -52,7 +52,7 @@ # The short X.Y version. version = '1.27.' # The full version, including alpha/beta/rc tags. -release = '1.27.84' +release = '1.27.85' # 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 2cd76f07ca38..a9c8d2f8dd9e 100644 --- a/setup.cfg +++ b/setup.cfg @@ -3,7 +3,7 @@ universal = 0 [metadata] requires_dist = - botocore==1.29.84 + botocore==1.29.85 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 9ce7769264bd..da9c2b45b5bc 100644 --- a/setup.py +++ b/setup.py @@ -24,7 +24,7 @@ def find_version(*file_paths): install_requires = [ - 'botocore==1.29.84', + 'botocore==1.29.85', 'docutils>=0.10,<0.17', 's3transfer>=0.6.0,<0.7.0', 'PyYAML>=3.10,<5.5',