Skip to content

Commit 23e4b4f

Browse files
Merge branch 'release-1.25.0' into develop
* release-1.25.0: Bumping version to 1.25.0 Add changelog entries from botocore Update changelog based on model updates
2 parents 44f2b7d + f6f635c commit 23e4b4f

File tree

7 files changed

+62
-12
lines changed

7 files changed

+62
-12
lines changed

.changes/1.25.0.json

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
[
2+
{
3+
"category": "``lookoutmetrics``",
4+
"description": "Adding backtest mode to detectors using the Cloudwatch data source.",
5+
"type": "api-change"
6+
},
7+
{
8+
"category": "``transcribe``",
9+
"description": "Amazon Transcribe now supports automatic language identification for multi-lingual audio in batch mode.",
10+
"type": "api-change"
11+
},
12+
{
13+
"category": "``iotsitewise``",
14+
"description": "This release adds the following new optional field to the IoT SiteWise asset resource: assetDescription.",
15+
"type": "api-change"
16+
},
17+
{
18+
"category": "``sagemaker``",
19+
"description": "Amazon SageMaker Notebook Instances now support Jupyter Lab 3.",
20+
"type": "api-change"
21+
},
22+
{
23+
"category": "Python",
24+
"description": "Dropped support for Python 3.6",
25+
"type": "feature"
26+
},
27+
{
28+
"category": "``drs``",
29+
"description": "Changed existing APIs and added new APIs to accommodate using multiple AWS accounts with AWS Elastic Disaster Recovery.",
30+
"type": "api-change"
31+
},
32+
{
33+
"category": "``cognito-idp``",
34+
"description": "Amazon Cognito now supports IP Address propagation for all unauthenticated APIs (e.g. SignUp, ForgotPassword).",
35+
"type": "api-change"
36+
},
37+
{
38+
"category": "Python",
39+
"description": "Dropped support for Python 3.6",
40+
"type": "feature"
41+
}
42+
]

.changes/next-release/feature-Python-26513.json

Lines changed: 0 additions & 5 deletions
This file was deleted.

CHANGELOG.rst

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,19 @@
22
CHANGELOG
33
=========
44

5+
1.25.0
6+
======
7+
8+
* api-change:``lookoutmetrics``: Adding backtest mode to detectors using the Cloudwatch data source.
9+
* api-change:``transcribe``: Amazon Transcribe now supports automatic language identification for multi-lingual audio in batch mode.
10+
* api-change:``iotsitewise``: This release adds the following new optional field to the IoT SiteWise asset resource: assetDescription.
11+
* api-change:``sagemaker``: Amazon SageMaker Notebook Instances now support Jupyter Lab 3.
12+
* feature:Python: Dropped support for Python 3.6
13+
* api-change:``drs``: Changed existing APIs and added new APIs to accommodate using multiple AWS accounts with AWS Elastic Disaster Recovery.
14+
* api-change:``cognito-idp``: Amazon Cognito now supports IP Address propagation for all unauthenticated APIs (e.g. SignUp, ForgotPassword).
15+
* feature:Python: Dropped support for Python 3.6
16+
17+
518
1.24.10
619
=======
720

awscli/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
"""
1818
import os
1919

20-
__version__ = '1.24.10'
20+
__version__ = '1.25.0'
2121

2222
#
2323
# Get our data path to be added to botocore's search path

doc/source/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,9 +50,9 @@
5050
# built documents.
5151
#
5252
# The short X.Y version.
53-
version = '1.24.'
53+
version = '1.25'
5454
# The full version, including alpha/beta/rc tags.
55-
release = '1.24.10'
55+
release = '1.25.0'
5656

5757
# The language for content autogenerated by Sphinx. Refer to documentation
5858
# for a list of supported languages.

setup.cfg

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ universal = 0
33

44
[metadata]
55
requires_dist =
6-
botocore==1.26.10
6+
botocore==1.27.0
77
docutils>=0.10,<0.17
8-
s3transfer>=0.5.0,<0.6.0
8+
s3transfer>=0.6.0,<0.7.0
99
PyYAML>=3.10,<5.5
1010
colorama>=0.2.5,<0.4.5
1111
rsa>=3.1.2,<4.8

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,9 @@ def find_version(*file_paths):
2424

2525

2626
install_requires = [
27-
'botocore==1.26.10',
27+
'botocore==1.27.0',
2828
'docutils>=0.10,<0.17',
29-
's3transfer>=0.5.0,<0.6.0',
29+
's3transfer>=0.6.0,<0.7.0',
3030
'PyYAML>=3.10,<5.5',
3131
'colorama>=0.2.5,<0.4.5',
3232
'rsa>=3.1.2,<4.8',

0 commit comments

Comments
 (0)