diff --git a/.changes/1.34.37.json b/.changes/1.34.37.json new file mode 100644 index 0000000000..5317d652b0 --- /dev/null +++ b/.changes/1.34.37.json @@ -0,0 +1,17 @@ +[ + { + "category": "``datasync``", + "description": "[``botocore``] AWS DataSync now supports manifests for specifying files or objects to transfer.", + "type": "api-change" + }, + { + "category": "``lexv2-models``", + "description": "[``botocore``] Update lexv2-models client to latest version", + "type": "api-change" + }, + { + "category": "``redshift``", + "description": "[``botocore``] LisRecommendations API to fetch Amazon Redshift Advisor recommendations.", + "type": "api-change" + } +] \ No newline at end of file diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 931bacc5d0..65d95e5dfa 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,14 @@ CHANGELOG ========= +1.34.37 +======= + +* api-change:``datasync``: [``botocore``] AWS DataSync now supports manifests for specifying files or objects to transfer. +* api-change:``lexv2-models``: [``botocore``] Update lexv2-models client to latest version +* api-change:``redshift``: [``botocore``] LisRecommendations API to fetch Amazon Redshift Advisor recommendations. + + 1.34.36 ======= diff --git a/boto3/__init__.py b/boto3/__init__.py index 988c28ceac..3f7e2993f3 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.36' +__version__ = '1.34.37' # The default Boto3 session; autoloaded when needed. diff --git a/setup.cfg b/setup.cfg index e0a93f71a5..d6f6c24980 100644 --- a/setup.cfg +++ b/setup.cfg @@ -3,7 +3,7 @@ universal = 0 [metadata] requires_dist = - botocore>=1.34.36,<1.35.0 + botocore>=1.34.37,<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 6ad4d9dac5..7cdeb1b8ba 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ requires = [ - 'botocore>=1.34.36,<1.35.0', + 'botocore>=1.34.37,<1.35.0', 'jmespath>=0.7.1,<2.0.0', 's3transfer>=0.10.0,<0.11.0', ]