diff --git a/.changes/1.34.31.json b/.changes/1.34.31.json new file mode 100644 index 0000000000..d8c0cf1059 --- /dev/null +++ b/.changes/1.34.31.json @@ -0,0 +1,12 @@ +[ + { + "category": "``datazone``", + "description": "[``botocore``] Add new skipDeletionCheck to DeleteDomain. Add new skipDeletionCheck to DeleteProject which also automatically deletes dependent objects", + "type": "api-change" + }, + { + "category": "``route53``", + "description": "[``botocore``] Update the SDKs for text changes in the APIs.", + "type": "api-change" + } +] \ No newline at end of file diff --git a/CHANGELOG.rst b/CHANGELOG.rst index cce6cf2135..b72ddfe3c0 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,13 @@ CHANGELOG ========= +1.34.31 +======= + +* api-change:``datazone``: [``botocore``] Add new skipDeletionCheck to DeleteDomain. Add new skipDeletionCheck to DeleteProject which also automatically deletes dependent objects +* api-change:``route53``: [``botocore``] Update the SDKs for text changes in the APIs. + + 1.34.30 ======= diff --git a/boto3/__init__.py b/boto3/__init__.py index d9b68c2d8d..efa2c4693b 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.30' +__version__ = '1.34.31' # The default Boto3 session; autoloaded when needed. diff --git a/setup.cfg b/setup.cfg index 8186be8288..0df36894fc 100644 --- a/setup.cfg +++ b/setup.cfg @@ -3,7 +3,7 @@ universal = 0 [metadata] requires_dist = - botocore>=1.34.30,<1.35.0 + botocore>=1.34.31,<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 2c850dc765..cf41ee37f3 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ requires = [ - 'botocore>=1.34.30,<1.35.0', + 'botocore>=1.34.31,<1.35.0', 'jmespath>=0.7.1,<2.0.0', 's3transfer>=0.10.0,<0.11.0', ]