From cbd71ef95e0a68105eef5f9c01a764ab8618b917 Mon Sep 17 00:00:00 2001 From: aws-sdk-python-automation Date: Wed, 1 Jun 2022 18:11:09 +0000 Subject: [PATCH] Bumping version to 1.25.1 --- .changes/1.25.1.json | 22 +++++++++++++++++++ .../api-change-backupgateway-66615.json | 5 ----- .../api-change-chimesdkmeetings-49808.json | 5 ----- .../api-change-forecast-84700.json | 5 ----- .../api-change-route53-74708.json | 5 ----- CHANGELOG.rst | 9 ++++++++ awscli/__init__.py | 2 +- doc/source/conf.py | 2 +- setup.cfg | 2 +- setup.py | 2 +- 10 files changed, 35 insertions(+), 24 deletions(-) create mode 100644 .changes/1.25.1.json delete mode 100644 .changes/next-release/api-change-backupgateway-66615.json delete mode 100644 .changes/next-release/api-change-chimesdkmeetings-49808.json delete mode 100644 .changes/next-release/api-change-forecast-84700.json delete mode 100644 .changes/next-release/api-change-route53-74708.json diff --git a/.changes/1.25.1.json b/.changes/1.25.1.json new file mode 100644 index 000000000000..beb1a8e72b0f --- /dev/null +++ b/.changes/1.25.1.json @@ -0,0 +1,22 @@ +[ + { + "category": "``route53``", + "description": "Add new APIs to support Route 53 IP Based Routing", + "type": "api-change" + }, + { + "category": "``forecast``", + "description": "Added Format field to Import and Export APIs in Amazon Forecast. Added TimeSeriesSelector to Create Forecast API.", + "type": "api-change" + }, + { + "category": "``chime-sdk-meetings``", + "description": "Adds support for centrally controlling each participant's ability to send and receive audio, video and screen share within a WebRTC session. Attendee capabilities can be specified when the attendee is created and updated during the session with the new BatchUpdateAttendeeCapabilitiesExcept API.", + "type": "api-change" + }, + { + "category": "``backup-gateway``", + "description": "Adds GetGateway and UpdateGatewaySoftwareNow API and adds hypervisor name to UpdateHypervisor API", + "type": "api-change" + } +] \ No newline at end of file diff --git a/.changes/next-release/api-change-backupgateway-66615.json b/.changes/next-release/api-change-backupgateway-66615.json deleted file mode 100644 index 14c877f7df30..000000000000 --- a/.changes/next-release/api-change-backupgateway-66615.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``backup-gateway``", - "description": "Adds GetGateway and UpdateGatewaySoftwareNow API and adds hypervisor name to UpdateHypervisor API" -} diff --git a/.changes/next-release/api-change-chimesdkmeetings-49808.json b/.changes/next-release/api-change-chimesdkmeetings-49808.json deleted file mode 100644 index 30eea5e5cd9b..000000000000 --- a/.changes/next-release/api-change-chimesdkmeetings-49808.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``chime-sdk-meetings``", - "description": "Adds support for centrally controlling each participant's ability to send and receive audio, video and screen share within a WebRTC session. Attendee capabilities can be specified when the attendee is created and updated during the session with the new BatchUpdateAttendeeCapabilitiesExcept API." -} diff --git a/.changes/next-release/api-change-forecast-84700.json b/.changes/next-release/api-change-forecast-84700.json deleted file mode 100644 index 67726721dc12..000000000000 --- a/.changes/next-release/api-change-forecast-84700.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``forecast``", - "description": "Added Format field to Import and Export APIs in Amazon Forecast. Added TimeSeriesSelector to Create Forecast API." -} diff --git a/.changes/next-release/api-change-route53-74708.json b/.changes/next-release/api-change-route53-74708.json deleted file mode 100644 index f20b12b786c8..000000000000 --- a/.changes/next-release/api-change-route53-74708.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``route53``", - "description": "Add new APIs to support Route 53 IP Based Routing" -} diff --git a/CHANGELOG.rst b/CHANGELOG.rst index d2e94896c1b9..004de09640f5 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,15 @@ CHANGELOG ========= +1.25.1 +====== + +* api-change:``route53``: Add new APIs to support Route 53 IP Based Routing +* api-change:``forecast``: Added Format field to Import and Export APIs in Amazon Forecast. Added TimeSeriesSelector to Create Forecast API. +* api-change:``chime-sdk-meetings``: Adds support for centrally controlling each participant's ability to send and receive audio, video and screen share within a WebRTC session. Attendee capabilities can be specified when the attendee is created and updated during the session with the new BatchUpdateAttendeeCapabilitiesExcept API. +* api-change:``backup-gateway``: Adds GetGateway and UpdateGatewaySoftwareNow API and adds hypervisor name to UpdateHypervisor API + + 1.25.0 ====== diff --git a/awscli/__init__.py b/awscli/__init__.py index 8daabf145514..9f44cb19fd92 100644 --- a/awscli/__init__.py +++ b/awscli/__init__.py @@ -17,7 +17,7 @@ """ import os -__version__ = '1.25.0' +__version__ = '1.25.1' # # Get our data path to be added to botocore's search path diff --git a/doc/source/conf.py b/doc/source/conf.py index ce05449e10ee..3f56129e0722 100644 --- a/doc/source/conf.py +++ b/doc/source/conf.py @@ -52,7 +52,7 @@ # The short X.Y version. version = '1.25' # The full version, including alpha/beta/rc tags. -release = '1.25.0' +release = '1.25.1' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/setup.cfg b/setup.cfg index 0737deee7143..aa95c54223b9 100644 --- a/setup.cfg +++ b/setup.cfg @@ -3,7 +3,7 @@ universal = 0 [metadata] requires_dist = - botocore==1.27.0 + botocore==1.27.1 docutils>=0.10,<0.17 s3transfer>=0.6.0,<0.7.0 PyYAML>=3.10,<5.5 diff --git a/setup.py b/setup.py index e909266b7409..ebd8c3146c2a 100644 --- a/setup.py +++ b/setup.py @@ -24,7 +24,7 @@ def find_version(*file_paths): install_requires = [ - 'botocore==1.27.0', + 'botocore==1.27.1', 'docutils>=0.10,<0.17', 's3transfer>=0.6.0,<0.7.0', 'PyYAML>=3.10,<5.5',