From 9cb7ccc8fa88f5f0232d746dc69f826d09a36f72 Mon Sep 17 00:00:00 2001 From: Nate Prewitt Date: Mon, 27 Nov 2023 12:37:56 -0700 Subject: [PATCH] Add changelog and version bump information --- .changes/next-release/enhancement-Versioning-79122.json | 5 +++++ .changes/next-release/feature-s3-74250.json | 5 +++++ boto3/__init__.py | 2 +- 3 files changed, 11 insertions(+), 1 deletion(-) create mode 100644 .changes/next-release/enhancement-Versioning-79122.json create mode 100644 .changes/next-release/feature-s3-74250.json diff --git a/.changes/next-release/enhancement-Versioning-79122.json b/.changes/next-release/enhancement-Versioning-79122.json new file mode 100644 index 0000000000..98a3619828 --- /dev/null +++ b/.changes/next-release/enhancement-Versioning-79122.json @@ -0,0 +1,5 @@ +{ + "type": "enhancement", + "category": "Versioning", + "description": "Bump boto3 from 1.29.7 to 1.33.0 to match Botocore versioning scheme." +} diff --git a/.changes/next-release/feature-s3-74250.json b/.changes/next-release/feature-s3-74250.json new file mode 100644 index 0000000000..3566ebcc11 --- /dev/null +++ b/.changes/next-release/feature-s3-74250.json @@ -0,0 +1,5 @@ +{ + "type": "feature", + "category": "``s3``", + "description": "Boto3 will now opt into using the awscrt on select EC2 instance types for s3 transfers." +} diff --git a/boto3/__init__.py b/boto3/__init__.py index ebdf84ec69..056f20b371 100644 --- a/boto3/__init__.py +++ b/boto3/__init__.py @@ -17,7 +17,7 @@ from boto3.session import Session __author__ = 'Amazon Web Services' -__version__ = '1.29.7' +__version__ = '1.32.0' # The default Boto3 session; autoloaded when needed.