diff --git a/.changes/1.35.0.json b/.changes/1.35.0.json new file mode 100644 index 000000000000..7d44da228401 --- /dev/null +++ b/.changes/1.35.0.json @@ -0,0 +1,17 @@ +[ + { + "category": "``ec2``", + "description": "Documentation updates for Amazon EC2.", + "type": "api-change" + }, + { + "category": "``iot-data``", + "description": "Add v2 smoke tests and smithy smokeTests trait for SDK testing.", + "type": "api-change" + }, + { + "category": "s3", + "description": "Adds ``--checksum-mode`` and ``--checksum-algorithm`` parameters to high-level ``s3`` commands.", + "type": "feature" + } +] \ No newline at end of file diff --git a/.changes/next-release/api-change-ec2-5543.json b/.changes/next-release/api-change-ec2-5543.json deleted file mode 100644 index dcb7ae606ac6..000000000000 --- a/.changes/next-release/api-change-ec2-5543.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``ec2``", - "description": "Documentation updates for Amazon EC2." -} diff --git a/.changes/next-release/api-change-iotdata-25172.json b/.changes/next-release/api-change-iotdata-25172.json deleted file mode 100644 index 5726d8b68bcf..000000000000 --- a/.changes/next-release/api-change-iotdata-25172.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``iot-data``", - "description": "Add v2 smoke tests and smithy smokeTests trait for SDK testing." -} diff --git a/.changes/next-release/feature-s3-95496.json b/.changes/next-release/feature-s3-95496.json deleted file mode 100644 index 8d1d36b64f23..000000000000 --- a/.changes/next-release/feature-s3-95496.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "feature", - "category": "s3", - "description": "Adds ``--checksum-mode`` and ``--checksum-algorithm`` parameters to high-level ``s3`` commands." -} diff --git a/CHANGELOG.rst b/CHANGELOG.rst index aaa6c732c29f..a6ede38ef2c8 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,14 @@ CHANGELOG ========= +1.35.0 +====== + +* api-change:``ec2``: Documentation updates for Amazon EC2. +* api-change:``iot-data``: Add v2 smoke tests and smithy smokeTests trait for SDK testing. +* feature:s3: Adds ``--checksum-mode`` and ``--checksum-algorithm`` parameters to high-level ``s3`` commands. + + 1.34.33 ======= diff --git a/awscli/__init__.py b/awscli/__init__.py index c842ff8f3e8f..b7f81b9d689a 100644 --- a/awscli/__init__.py +++ b/awscli/__init__.py @@ -18,7 +18,7 @@ import os -__version__ = '1.34.33' +__version__ = '1.35.0' # # 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 488036c4b86c..d4a73cb5fcb8 100644 --- a/doc/source/conf.py +++ b/doc/source/conf.py @@ -50,9 +50,9 @@ # built documents. # # The short X.Y version. -version = '1.34.' +version = '1.35' # The full version, including alpha/beta/rc tags. -release = '1.34.33' +release = '1.35.0' # 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 220c1c961c8e..e270545f2f4c 100644 --- a/setup.cfg +++ b/setup.cfg @@ -3,7 +3,7 @@ universal = 0 [metadata] requires_dist = - botocore==1.35.33 + botocore==1.35.34 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 1b5ea44ce68a..a7d333c0ca4f 100644 --- a/setup.py +++ b/setup.py @@ -24,7 +24,7 @@ def find_version(*file_paths): install_requires = [ - 'botocore==1.35.33', + 'botocore==1.35.34', 'docutils>=0.10,<0.17', 's3transfer>=0.10.0,<0.11.0', 'PyYAML>=3.10,<6.1',