Skip to content

Commit

Permalink
Bumping version to 1.17.0
Browse files Browse the repository at this point in the history
  • Loading branch information
aws-sdk-python-automation committed Jan 10, 2020
1 parent 74ae06f commit 4621065
Show file tree
Hide file tree
Showing 13 changed files with 56 additions and 42 deletions.
37 changes: 37 additions & 0 deletions .changes/1.17.0.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
[
{
"category": "``sagemaker``",
"description": "Update sagemaker command to latest version",
"type": "api-change"
},
{
"category": "Python",
"description": "Dropped support for Python 2.6 and 3.3.",
"type": "feature"
},
{
"category": "``transfer``",
"description": "Update transfer command to latest version",
"type": "api-change"
},
{
"category": "``workspaces``",
"description": "Update workspaces command to latest version",
"type": "api-change"
},
{
"category": "``rds``",
"description": "Update rds command to latest version",
"type": "api-change"
},
{
"category": "``chime``",
"description": "Update chime command to latest version",
"type": "api-change"
},
{
"category": "``ec2``",
"description": "Update ec2 command to latest version",
"type": "api-change"
}
]
5 changes: 0 additions & 5 deletions .changes/next-release/api-change-chime-22117.json

This file was deleted.

5 changes: 0 additions & 5 deletions .changes/next-release/api-change-ec2-55100.json

This file was deleted.

5 changes: 0 additions & 5 deletions .changes/next-release/api-change-rds-32727.json

This file was deleted.

5 changes: 0 additions & 5 deletions .changes/next-release/api-change-sagemaker-48846.json

This file was deleted.

5 changes: 0 additions & 5 deletions .changes/next-release/api-change-transfer-87320.json

This file was deleted.

5 changes: 0 additions & 5 deletions .changes/next-release/api-change-workspaces-59356.json

This file was deleted.

5 changes: 0 additions & 5 deletions .changes/next-release/feature-Python-20947.json

This file was deleted.

12 changes: 12 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,18 @@
CHANGELOG
=========

1.17.0
======

* api-change:``sagemaker``: Update sagemaker command to latest version
* feature:Python: Dropped support for Python 2.6 and 3.3.
* api-change:``transfer``: Update transfer command to latest version
* api-change:``workspaces``: Update workspaces command to latest version
* api-change:``rds``: Update rds command to latest version
* api-change:``chime``: Update chime command to latest version
* api-change:``ec2``: Update ec2 command to latest version


1.16.314
========

Expand Down
2 changes: 1 addition & 1 deletion awscli/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"""
import os

__version__ = '1.16.314'
__version__ = '1.17.0'

#
# Get our data path to be added to botocore's search path
Expand Down
4 changes: 2 additions & 2 deletions doc/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,9 +50,9 @@
# built documents.
#
# The short X.Y version.
version = '1.16.3'
version = '1.17'
# The full version, including alpha/beta/rc tags.
release = '1.16.314'
release = '1.17.0'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
4 changes: 2 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@ universal = 1

[metadata]
requires-dist =
botocore==1.13.50
botocore==1.14.0
colorama>=0.2.5,<0.4.2
docutils>=0.10,<0.16
rsa>=3.1.2,<=3.5.0
PyYAML>=3.10,<5.3
s3transfer>=0.2.0,<0.3.0
s3transfer>=0.3.0,<0.4.0


[check-manifest]
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@ def find_version(*file_paths):
raise RuntimeError("Unable to find version string.")


install_requires = ['botocore==1.13.50',
install_requires = ['botocore==1.14.0',
'docutils>=0.10,<0.16',
'rsa>=3.1.2,<=3.5.0',
's3transfer>=0.2.0,<0.3.0',
's3transfer>=0.3.0,<0.4.0',
'PyYAML>=3.10,<5.3',
'colorama>=0.2.5,<0.4.2']

Expand Down

0 comments on commit 4621065

Please sign in to comment.