Skip to content

Commit c93a086

Browse files
Bumping version to 1.32.0
1 parent 628a587 commit c93a086

File tree

9 files changed

+32
-22
lines changed

9 files changed

+32
-22
lines changed

.changes/1.32.0.json

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
[
2+
{
3+
"category": "Python",
4+
"description": "End of support for Python 3.7",
5+
"type": "feature"
6+
},
7+
{
8+
"category": "``drs``",
9+
"description": "Adding AgentVersion to SourceServer and RecoveryInstance structures",
10+
"type": "api-change"
11+
},
12+
{
13+
"category": "Python",
14+
"description": "End of support for Python 3.7",
15+
"type": "feature"
16+
}
17+
]

.changes/next-release/api-change-drs-48276.json

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

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

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

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

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

CHANGELOG.rst

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

5+
1.32.0
6+
======
7+
8+
* feature:Python: End of support for Python 3.7
9+
* api-change:``drs``: Adding AgentVersion to SourceServer and RecoveryInstance structures
10+
* feature:Python: End of support for Python 3.7
11+
12+
513
1.31.13
614
=======
715

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.31.13'
20+
__version__ = '1.32.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.31.'
53+
version = '1.32'
5454
# The full version, including alpha/beta/rc tags.
55-
release = '1.31.13'
55+
release = '1.32.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.33.13
6+
botocore==1.34.0
77
docutils>=0.10,<0.17
8-
s3transfer>=0.8.0,<0.9.0
8+
s3transfer>=0.9.0,<0.10.0
99
PyYAML>=3.10,<6.1
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.33.13',
27+
'botocore==1.34.0',
2828
'docutils>=0.10,<0.17',
29-
's3transfer>=0.8.0,<0.9.0',
29+
's3transfer>=0.9.0,<0.10.0',
3030
'PyYAML>=3.10,<6.1',
3131
'colorama>=0.2.5,<0.4.5',
3232
'rsa>=3.1.2,<4.8',

0 commit comments

Comments
 (0)