Skip to content

Commit 888e8b1

Browse files
Merge branch 'release-1.40.0' into develop
* release-1.40.0: Bumping version to 1.40.0 Update changelog based on model updates
2 parents 0aa1a79 + ff979aa commit 888e8b1

File tree

7 files changed

+36
-10
lines changed

7 files changed

+36
-10
lines changed

.changes/1.40.0.json

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
[
2+
{
3+
"category": "``codebuild``",
4+
"description": "Add support for custom instance type for reserved capacity fleets",
5+
"type": "api-change"
6+
},
7+
{
8+
"category": "``ecs``",
9+
"description": "Add support to roll back an In_Progress ECS Service Deployment",
10+
"type": "api-change"
11+
},
12+
{
13+
"category": "``resource-explorer-2``",
14+
"description": "Documentation-only update for CreateView option correction",
15+
"type": "api-change"
16+
},
17+
{
18+
"category": "``eks``",
19+
"description": "Add assume-role-arn option to update-kubeconfig command for cross-account access",
20+
"type": "feature"
21+
}
22+
]

.changes/next-release/feature-eks-46018.json

-5
This file was deleted.

CHANGELOG.rst

+9
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,15 @@
22
CHANGELOG
33
=========
44

5+
1.40.0
6+
======
7+
8+
* api-change:``codebuild``: Add support for custom instance type for reserved capacity fleets
9+
* api-change:``ecs``: Add support to roll back an In_Progress ECS Service Deployment
10+
* api-change:``resource-explorer-2``: Documentation-only update for CreateView option correction
11+
* feature:``eks``: Add assume-role-arn option to update-kubeconfig command for cross-account access
12+
13+
514
1.39.0
615
======
716

awscli/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919
import os
2020

21-
__version__ = '1.39.0'
21+
__version__ = '1.40.0'
2222

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

doc/source/conf.py

+2-2
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.39'
53+
version = '1.40'
5454
# The full version, including alpha/beta/rc tags.
55-
release = '1.39.0'
55+
release = '1.40.0'
5656

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

setup.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ universal = 0
33

44
[metadata]
55
requires_dist =
6-
botocore==1.38.0
6+
botocore==1.38.1
77
docutils>=0.18.1,<=0.19
88
s3transfer>=0.12.0,<0.13.0
99
PyYAML>=3.10,<6.1

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ def find_version(*file_paths):
2424

2525

2626
install_requires = [
27-
'botocore==1.38.0',
27+
'botocore==1.38.1',
2828
'docutils>=0.18.1,<=0.19',
2929
's3transfer>=0.12.0,<0.13.0',
3030
'PyYAML>=3.10,<6.1',

0 commit comments

Comments
 (0)