From ac52ae6a360f6fc4957cee00eadad0b7a99b3cc3 Mon Sep 17 00:00:00 2001 From: aws-sdk-python-automation Date: Wed, 13 Dec 2023 19:45:59 +0000 Subject: [PATCH 1/2] Add changelog entries from botocore --- .changes/next-release/api-change-drs-13769.json | 5 +++++ .changes/next-release/feature-Python-21065.json | 5 +++++ 2 files changed, 10 insertions(+) create mode 100644 .changes/next-release/api-change-drs-13769.json create mode 100644 .changes/next-release/feature-Python-21065.json diff --git a/.changes/next-release/api-change-drs-13769.json b/.changes/next-release/api-change-drs-13769.json new file mode 100644 index 0000000000..ecf7cd6f4f --- /dev/null +++ b/.changes/next-release/api-change-drs-13769.json @@ -0,0 +1,5 @@ +{ + "type": "api-change", + "category": "``drs``", + "description": "[``botocore``] Adding AgentVersion to SourceServer and RecoveryInstance structures" +} diff --git a/.changes/next-release/feature-Python-21065.json b/.changes/next-release/feature-Python-21065.json new file mode 100644 index 0000000000..22aa11a215 --- /dev/null +++ b/.changes/next-release/feature-Python-21065.json @@ -0,0 +1,5 @@ +{ + "type": "feature", + "category": "Python", + "description": "[``botocore``] End of support for Python 3.7" +} From 71fee691d536e334a0aae18fd69d296179c17b51 Mon Sep 17 00:00:00 2001 From: aws-sdk-python-automation Date: Wed, 13 Dec 2023 19:46:09 +0000 Subject: [PATCH 2/2] Bumping version to 1.34.0 --- .changes/1.34.0.json | 17 +++++++++++++++++ .changes/next-release/api-change-drs-13769.json | 5 ----- .changes/next-release/feature-Python-21065.json | 5 ----- .changes/next-release/feature-Python-4287.json | 5 ----- CHANGELOG.rst | 8 ++++++++ boto3/__init__.py | 2 +- setup.cfg | 4 ++-- setup.py | 4 ++-- 8 files changed, 30 insertions(+), 20 deletions(-) create mode 100644 .changes/1.34.0.json delete mode 100644 .changes/next-release/api-change-drs-13769.json delete mode 100644 .changes/next-release/feature-Python-21065.json delete mode 100644 .changes/next-release/feature-Python-4287.json diff --git a/.changes/1.34.0.json b/.changes/1.34.0.json new file mode 100644 index 0000000000..553d134413 --- /dev/null +++ b/.changes/1.34.0.json @@ -0,0 +1,17 @@ +[ + { + "category": "Python", + "description": "End of support for Python 3.7", + "type": "feature" + }, + { + "category": "Python", + "description": "[``botocore``] End of support for Python 3.7", + "type": "feature" + }, + { + "category": "``drs``", + "description": "[``botocore``] Adding AgentVersion to SourceServer and RecoveryInstance structures", + "type": "api-change" + } +] \ No newline at end of file diff --git a/.changes/next-release/api-change-drs-13769.json b/.changes/next-release/api-change-drs-13769.json deleted file mode 100644 index ecf7cd6f4f..0000000000 --- a/.changes/next-release/api-change-drs-13769.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``drs``", - "description": "[``botocore``] Adding AgentVersion to SourceServer and RecoveryInstance structures" -} diff --git a/.changes/next-release/feature-Python-21065.json b/.changes/next-release/feature-Python-21065.json deleted file mode 100644 index 22aa11a215..0000000000 --- a/.changes/next-release/feature-Python-21065.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "feature", - "category": "Python", - "description": "[``botocore``] End of support for Python 3.7" -} diff --git a/.changes/next-release/feature-Python-4287.json b/.changes/next-release/feature-Python-4287.json deleted file mode 100644 index c21896b745..0000000000 --- a/.changes/next-release/feature-Python-4287.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "feature", - "category": "Python", - "description": "End of support for Python 3.7" -} diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 3911addc0f..cd85c91afe 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,14 @@ CHANGELOG ========= +1.34.0 +====== + +* feature:Python: End of support for Python 3.7 +* feature:Python: [``botocore``] End of support for Python 3.7 +* api-change:``drs``: [``botocore``] Adding AgentVersion to SourceServer and RecoveryInstance structures + + 1.33.13 ======= diff --git a/boto3/__init__.py b/boto3/__init__.py index 8ce408ac3d..a167e9f2d0 100644 --- a/boto3/__init__.py +++ b/boto3/__init__.py @@ -17,7 +17,7 @@ from boto3.session import Session __author__ = 'Amazon Web Services' -__version__ = '1.33.13' +__version__ = '1.34.0' # The default Boto3 session; autoloaded when needed. diff --git a/setup.cfg b/setup.cfg index d9dcd5086d..8066a69de9 100644 --- a/setup.cfg +++ b/setup.cfg @@ -3,9 +3,9 @@ universal = 0 [metadata] requires_dist = - botocore>=1.33.13,<1.34.0 + botocore>=1.34.0,<1.35.0 jmespath>=0.7.1,<2.0.0 - s3transfer>=0.8.2,<0.9.0 + s3transfer>=0.9.0,<0.10.0 [options.extras_require] crt = botocore[crt]>=1.21.0,<2.0a0 diff --git a/setup.py b/setup.py index 9dc00453b4..95f291c07d 100644 --- a/setup.py +++ b/setup.py @@ -13,9 +13,9 @@ requires = [ - 'botocore>=1.33.13,<1.34.0', + 'botocore>=1.34.0,<1.35.0', 'jmespath>=0.7.1,<2.0.0', - 's3transfer>=0.8.2,<0.9.0', + 's3transfer>=0.9.0,<0.10.0', ]