From c3b0c9f476da75528b58acb8963032832c0e2ac3 Mon Sep 17 00:00:00 2001 From: aws-sdk-python-automation Date: Tue, 27 Sep 2022 18:11:22 +0000 Subject: [PATCH] Bumping version to 1.24.82 --- .changes/1.24.82.json | 17 +++++++++++++++++ .changes/next-release/api-change-ce-72955.json | 5 ----- .../next-release/api-change-kendra-1684.json | 5 ----- .../next-release/api-change-location-78764.json | 5 ----- CHANGELOG.rst | 8 ++++++++ boto3/__init__.py | 2 +- setup.cfg | 2 +- setup.py | 2 +- 8 files changed, 28 insertions(+), 18 deletions(-) create mode 100644 .changes/1.24.82.json delete mode 100644 .changes/next-release/api-change-ce-72955.json delete mode 100644 .changes/next-release/api-change-kendra-1684.json delete mode 100644 .changes/next-release/api-change-location-78764.json diff --git a/.changes/1.24.82.json b/.changes/1.24.82.json new file mode 100644 index 0000000000..bbc62be858 --- /dev/null +++ b/.changes/1.24.82.json @@ -0,0 +1,17 @@ +[ + { + "category": "``ce``", + "description": "[``botocore``] This release is to support retroactive Cost Categories. The new field will enable you to retroactively apply new and existing cost category rules to previous months.", + "type": "api-change" + }, + { + "category": "``kendra``", + "description": "[``botocore``] My AWS Service (placeholder) - Amazon Kendra now provides a data source connector for DropBox. For more information, see https://docs.aws.amazon.com/kendra/latest/dg/data-source-dropbox.html", + "type": "api-change" + }, + { + "category": "``location``", + "description": "[``botocore``] This release adds place IDs, which are unique identifiers of places, along with a new GetPlace operation, which can be used with place IDs to find a place again later. UnitNumber and UnitType are also added as new properties of places.", + "type": "api-change" + } +] \ No newline at end of file diff --git a/.changes/next-release/api-change-ce-72955.json b/.changes/next-release/api-change-ce-72955.json deleted file mode 100644 index 5f122d13e8..0000000000 --- a/.changes/next-release/api-change-ce-72955.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``ce``", - "description": "[``botocore``] This release is to support retroactive Cost Categories. The new field will enable you to retroactively apply new and existing cost category rules to previous months." -} diff --git a/.changes/next-release/api-change-kendra-1684.json b/.changes/next-release/api-change-kendra-1684.json deleted file mode 100644 index cc9967619b..0000000000 --- a/.changes/next-release/api-change-kendra-1684.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``kendra``", - "description": "[``botocore``] My AWS Service (placeholder) - Amazon Kendra now provides a data source connector for DropBox. For more information, see https://docs.aws.amazon.com/kendra/latest/dg/data-source-dropbox.html" -} diff --git a/.changes/next-release/api-change-location-78764.json b/.changes/next-release/api-change-location-78764.json deleted file mode 100644 index 056746dfab..0000000000 --- a/.changes/next-release/api-change-location-78764.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``location``", - "description": "[``botocore``] This release adds place IDs, which are unique identifiers of places, along with a new GetPlace operation, which can be used with place IDs to find a place again later. UnitNumber and UnitType are also added as new properties of places." -} diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 7b411bad14..3a6a320308 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,14 @@ CHANGELOG ========= +1.24.82 +======= + +* api-change:``ce``: [``botocore``] This release is to support retroactive Cost Categories. The new field will enable you to retroactively apply new and existing cost category rules to previous months. +* api-change:``kendra``: [``botocore``] My AWS Service (placeholder) - Amazon Kendra now provides a data source connector for DropBox. For more information, see https://docs.aws.amazon.com/kendra/latest/dg/data-source-dropbox.html +* api-change:``location``: [``botocore``] This release adds place IDs, which are unique identifiers of places, along with a new GetPlace operation, which can be used with place IDs to find a place again later. UnitNumber and UnitType are also added as new properties of places. + + 1.24.81 ======= diff --git a/boto3/__init__.py b/boto3/__init__.py index 49975c7bd2..847f14df4a 100644 --- a/boto3/__init__.py +++ b/boto3/__init__.py @@ -17,7 +17,7 @@ from boto3.session import Session __author__ = 'Amazon Web Services' -__version__ = '1.24.81' +__version__ = '1.24.82' # The default Boto3 session; autoloaded when needed. diff --git a/setup.cfg b/setup.cfg index 124c626098..b0af416ca0 100644 --- a/setup.cfg +++ b/setup.cfg @@ -3,7 +3,7 @@ universal = 0 [metadata] requires_dist = - botocore>=1.27.81,<1.28.0 + botocore>=1.27.82,<1.28.0 jmespath>=0.7.1,<2.0.0 s3transfer>=0.6.0,<0.7.0 diff --git a/setup.py b/setup.py index a80ab764ea..393f5f61f6 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ requires = [ - 'botocore>=1.27.81,<1.28.0', + 'botocore>=1.27.82,<1.28.0', 'jmespath>=0.7.1,<2.0.0', 's3transfer>=0.6.0,<0.7.0', ]