From f1cb26a6e1e6c08b5c33acb27b56ce2d105a9194 Mon Sep 17 00:00:00 2001 From: aws-sdk-python-automation Date: Thu, 23 May 2024 18:06:01 +0000 Subject: [PATCH 1/2] Add changelog entries from botocore --- .changes/next-release/api-change-emrserverless-66542.json | 5 +++++ .changes/next-release/api-change-opsworks-34897.json | 5 +++++ 2 files changed, 10 insertions(+) create mode 100644 .changes/next-release/api-change-emrserverless-66542.json create mode 100644 .changes/next-release/api-change-opsworks-34897.json diff --git a/.changes/next-release/api-change-emrserverless-66542.json b/.changes/next-release/api-change-emrserverless-66542.json new file mode 100644 index 0000000000..23810353df --- /dev/null +++ b/.changes/next-release/api-change-emrserverless-66542.json @@ -0,0 +1,5 @@ +{ + "type": "api-change", + "category": "``emr-serverless``", + "description": "[``botocore``] This release adds the capability to run interactive workloads using Apache Livy Endpoint." +} diff --git a/.changes/next-release/api-change-opsworks-34897.json b/.changes/next-release/api-change-opsworks-34897.json new file mode 100644 index 0000000000..8cd41dd5f3 --- /dev/null +++ b/.changes/next-release/api-change-opsworks-34897.json @@ -0,0 +1,5 @@ +{ + "type": "api-change", + "category": "``opsworks``", + "description": "[``botocore``] Documentation-only update for OpsWorks Stacks." +} From 12cc956f0afaa3a5646835458a0962c970815956 Mon Sep 17 00:00:00 2001 From: aws-sdk-python-automation Date: Thu, 23 May 2024 18:07:05 +0000 Subject: [PATCH 2/2] Bumping version to 1.34.112 --- .changes/1.34.112.json | 12 ++++++++++++ .../next-release/api-change-emrserverless-66542.json | 5 ----- .changes/next-release/api-change-opsworks-34897.json | 5 ----- CHANGELOG.rst | 7 +++++++ boto3/__init__.py | 2 +- setup.cfg | 2 +- setup.py | 2 +- 7 files changed, 22 insertions(+), 13 deletions(-) create mode 100644 .changes/1.34.112.json delete mode 100644 .changes/next-release/api-change-emrserverless-66542.json delete mode 100644 .changes/next-release/api-change-opsworks-34897.json diff --git a/.changes/1.34.112.json b/.changes/1.34.112.json new file mode 100644 index 0000000000..c81e49e433 --- /dev/null +++ b/.changes/1.34.112.json @@ -0,0 +1,12 @@ +[ + { + "category": "``emr-serverless``", + "description": "[``botocore``] This release adds the capability to run interactive workloads using Apache Livy Endpoint.", + "type": "api-change" + }, + { + "category": "``opsworks``", + "description": "[``botocore``] Documentation-only update for OpsWorks Stacks.", + "type": "api-change" + } +] \ No newline at end of file diff --git a/.changes/next-release/api-change-emrserverless-66542.json b/.changes/next-release/api-change-emrserverless-66542.json deleted file mode 100644 index 23810353df..0000000000 --- a/.changes/next-release/api-change-emrserverless-66542.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``emr-serverless``", - "description": "[``botocore``] This release adds the capability to run interactive workloads using Apache Livy Endpoint." -} diff --git a/.changes/next-release/api-change-opsworks-34897.json b/.changes/next-release/api-change-opsworks-34897.json deleted file mode 100644 index 8cd41dd5f3..0000000000 --- a/.changes/next-release/api-change-opsworks-34897.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``opsworks``", - "description": "[``botocore``] Documentation-only update for OpsWorks Stacks." -} diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 7288bc67fb..fccfe2a413 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,13 @@ CHANGELOG ========= +1.34.112 +======== + +* api-change:``emr-serverless``: [``botocore``] This release adds the capability to run interactive workloads using Apache Livy Endpoint. +* api-change:``opsworks``: [``botocore``] Documentation-only update for OpsWorks Stacks. + + 1.34.111 ======== diff --git a/boto3/__init__.py b/boto3/__init__.py index 69c42b1a17..8532c7f67c 100644 --- a/boto3/__init__.py +++ b/boto3/__init__.py @@ -17,7 +17,7 @@ from boto3.session import Session __author__ = 'Amazon Web Services' -__version__ = '1.34.111' +__version__ = '1.34.112' # The default Boto3 session; autoloaded when needed. diff --git a/setup.cfg b/setup.cfg index 0ee502a522..533658c8a2 100644 --- a/setup.cfg +++ b/setup.cfg @@ -3,7 +3,7 @@ universal = 0 [metadata] requires_dist = - botocore>=1.34.111,<1.35.0 + botocore>=1.34.112,<1.35.0 jmespath>=0.7.1,<2.0.0 s3transfer>=0.10.0,<0.11.0 diff --git a/setup.py b/setup.py index fdc1c2491d..c290e7219a 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ requires = [ - 'botocore>=1.34.111,<1.35.0', + 'botocore>=1.34.112,<1.35.0', 'jmespath>=0.7.1,<2.0.0', 's3transfer>=0.10.0,<0.11.0', ]