diff --git a/.changes/1.33.13.json b/.changes/1.33.13.json new file mode 100644 index 0000000000..26cb2679aa --- /dev/null +++ b/.changes/1.33.13.json @@ -0,0 +1,17 @@ +[ + { + "category": "``imagebuilder``", + "description": "[``botocore``] This release adds the Image Workflows feature to give more flexibility and control over the image building and testing process.", + "type": "api-change" + }, + { + "category": "``location``", + "description": "[``botocore``] This release 1) adds sub-municipality field in Places API for searching and getting places information, and 2) allows optimizing route calculation based on expected arrival time.", + "type": "api-change" + }, + { + "category": "``logs``", + "description": "[``botocore``] This release introduces the StartLiveTail API to tail ingested logs in near real time.", + "type": "api-change" + } +] \ No newline at end of file diff --git a/.changes/next-release/api-change-imagebuilder-35987.json b/.changes/next-release/api-change-imagebuilder-35987.json deleted file mode 100644 index 89cbe7890e..0000000000 --- a/.changes/next-release/api-change-imagebuilder-35987.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``imagebuilder``", - "description": "[``botocore``] This release adds the Image Workflows feature to give more flexibility and control over the image building and testing process." -} diff --git a/.changes/next-release/api-change-location-51420.json b/.changes/next-release/api-change-location-51420.json deleted file mode 100644 index 268b82113f..0000000000 --- a/.changes/next-release/api-change-location-51420.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``location``", - "description": "[``botocore``] This release 1) adds sub-municipality field in Places API for searching and getting places information, and 2) allows optimizing route calculation based on expected arrival time." -} diff --git a/.changes/next-release/api-change-logs-77574.json b/.changes/next-release/api-change-logs-77574.json deleted file mode 100644 index 751a2892a5..0000000000 --- a/.changes/next-release/api-change-logs-77574.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``logs``", - "description": "[``botocore``] This release introduces the StartLiveTail API to tail ingested logs in near real time." -} diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 7db4005f74..3911addc0f 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,14 @@ CHANGELOG ========= +1.33.13 +======= + +* api-change:``imagebuilder``: [``botocore``] This release adds the Image Workflows feature to give more flexibility and control over the image building and testing process. +* api-change:``location``: [``botocore``] This release 1) adds sub-municipality field in Places API for searching and getting places information, and 2) allows optimizing route calculation based on expected arrival time. +* api-change:``logs``: [``botocore``] This release introduces the StartLiveTail API to tail ingested logs in near real time. + + 1.33.12 ======= diff --git a/boto3/__init__.py b/boto3/__init__.py index e5ffd0a635..8ce408ac3d 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.12' +__version__ = '1.33.13' # The default Boto3 session; autoloaded when needed. diff --git a/setup.cfg b/setup.cfg index abd0aaf91f..d9dcd5086d 100644 --- a/setup.cfg +++ b/setup.cfg @@ -3,7 +3,7 @@ universal = 0 [metadata] requires_dist = - botocore>=1.33.12,<1.34.0 + botocore>=1.33.13,<1.34.0 jmespath>=0.7.1,<2.0.0 s3transfer>=0.8.2,<0.9.0 diff --git a/setup.py b/setup.py index 87b91dc3f0..4f875cd489 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ requires = [ - 'botocore>=1.33.12,<1.34.0', + 'botocore>=1.33.13,<1.34.0', 'jmespath>=0.7.1,<2.0.0', 's3transfer>=0.8.2,<0.9.0', ]