From 53c38e2c6849af7c0c47a4d21ce41bfbad7d80cb Mon Sep 17 00:00:00 2001 From: aws-sdk-python-automation Date: Mon, 21 Nov 2022 19:37:29 +0000 Subject: [PATCH 1/2] Add changelog entries from botocore --- .changes/next-release/api-change-route53-42829.json | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 .changes/next-release/api-change-route53-42829.json diff --git a/.changes/next-release/api-change-route53-42829.json b/.changes/next-release/api-change-route53-42829.json new file mode 100644 index 0000000000..ae710a7b61 --- /dev/null +++ b/.changes/next-release/api-change-route53-42829.json @@ -0,0 +1,5 @@ +{ + "type": "api-change", + "category": "``route53``", + "description": "[``botocore``] Amazon Route 53 now supports the Asia Pacific (Hyderabad) Region (ap-south-2) for latency records, geoproximity records, and private DNS for Amazon VPCs in that region." +} From c92111ed1a7346642060fd7f6dfedcb3770a9650 Mon Sep 17 00:00:00 2001 From: aws-sdk-python-automation Date: Mon, 21 Nov 2022 19:37:50 +0000 Subject: [PATCH 2/2] Bumping version to 1.26.14 --- .changes/1.26.14.json | 7 +++++++ .changes/next-release/api-change-route53-42829.json | 5 ----- CHANGELOG.rst | 6 ++++++ boto3/__init__.py | 2 +- setup.cfg | 2 +- setup.py | 2 +- 6 files changed, 16 insertions(+), 8 deletions(-) create mode 100644 .changes/1.26.14.json delete mode 100644 .changes/next-release/api-change-route53-42829.json diff --git a/.changes/1.26.14.json b/.changes/1.26.14.json new file mode 100644 index 0000000000..c248d0eba2 --- /dev/null +++ b/.changes/1.26.14.json @@ -0,0 +1,7 @@ +[ + { + "category": "``route53``", + "description": "[``botocore``] Amazon Route 53 now supports the Asia Pacific (Hyderabad) Region (ap-south-2) for latency records, geoproximity records, and private DNS for Amazon VPCs in that region.", + "type": "api-change" + } +] \ No newline at end of file diff --git a/.changes/next-release/api-change-route53-42829.json b/.changes/next-release/api-change-route53-42829.json deleted file mode 100644 index ae710a7b61..0000000000 --- a/.changes/next-release/api-change-route53-42829.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``route53``", - "description": "[``botocore``] Amazon Route 53 now supports the Asia Pacific (Hyderabad) Region (ap-south-2) for latency records, geoproximity records, and private DNS for Amazon VPCs in that region." -} diff --git a/CHANGELOG.rst b/CHANGELOG.rst index ab62ad279a..e96be234b8 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,12 @@ CHANGELOG ========= +1.26.14 +======= + +* api-change:``route53``: [``botocore``] Amazon Route 53 now supports the Asia Pacific (Hyderabad) Region (ap-south-2) for latency records, geoproximity records, and private DNS for Amazon VPCs in that region. + + 1.26.13 ======= diff --git a/boto3/__init__.py b/boto3/__init__.py index 331fbfb48f..2b6fdcba52 100644 --- a/boto3/__init__.py +++ b/boto3/__init__.py @@ -17,7 +17,7 @@ from boto3.session import Session __author__ = 'Amazon Web Services' -__version__ = '1.26.13' +__version__ = '1.26.14' # The default Boto3 session; autoloaded when needed. diff --git a/setup.cfg b/setup.cfg index f133288743..a1b055d5c2 100644 --- a/setup.cfg +++ b/setup.cfg @@ -3,7 +3,7 @@ universal = 0 [metadata] requires_dist = - botocore>=1.29.13,<1.30.0 + botocore>=1.29.14,<1.30.0 jmespath>=0.7.1,<2.0.0 s3transfer>=0.6.0,<0.7.0 diff --git a/setup.py b/setup.py index b799d5fb95..52305cc769 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ requires = [ - 'botocore>=1.29.13,<1.30.0', + 'botocore>=1.29.14,<1.30.0', 'jmespath>=0.7.1,<2.0.0', 's3transfer>=0.6.0,<0.7.0', ]