From d0b395eadf80fc48b33d83f863779cf85b07f6ce Mon Sep 17 00:00:00 2001 From: AWS Date: Tue, 3 Nov 2015 20:46:44 +0000 Subject: [PATCH] Bumping version to 1.9.4 --- CHANGELOG.rst | 4 ++-- awscli/__init__.py | 2 +- doc/source/conf.py | 2 +- setup.cfg | 2 +- setup.py | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index b3d16e8bda74..718d0c731b0f 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,8 +2,8 @@ CHANGELOG ========= -Next Release (TBD) -================== +1.9.4 +===== * feature:``aws datapipeline create-default-roles``: Creates default IAM roles for creating EMR clusters. (`issue 1616 `__) diff --git a/awscli/__init__.py b/awscli/__init__.py index eeb9dfa59269..4eb1b73e055e 100644 --- a/awscli/__init__.py +++ b/awscli/__init__.py @@ -17,7 +17,7 @@ """ import os -__version__ = '1.9.3' +__version__ = '1.9.4' # # 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 b32712737556..cef33472dba1 100644 --- a/doc/source/conf.py +++ b/doc/source/conf.py @@ -52,7 +52,7 @@ # The short X.Y version. version = '1.9' # The full version, including alpha/beta/rc tags. -release = '1.9.3' +release = '1.9.4' # 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 e3dd043d2eb6..53b2637a0c14 100644 --- a/setup.cfg +++ b/setup.cfg @@ -4,7 +4,7 @@ universal = 1 [metadata] requires-dist = - botocore==1.3.3 + botocore==1.3.4 colorama>=0.2.5,<=0.3.3 docutils>=0.10 rsa>=3.1.2,<=3.3.0 diff --git a/setup.py b/setup.py index 4b4449d85b12..a7a8aa322179 100644 --- a/setup.py +++ b/setup.py @@ -6,7 +6,7 @@ import awscli -requires = ['botocore==1.3.3', +requires = ['botocore==1.3.4', 'colorama>=0.2.5,<=0.3.3', 'docutils>=0.10', 'rsa>=3.1.2,<=3.3.0']