Skip to content

Commit

Permalink
Merge branch 'release-1.7.34' into develop
Browse files Browse the repository at this point in the history
* release-1.7.34:
  Bumping version to 1.7.34
  Update changelog with bugfixes
  • Loading branch information
jamesls committed Jun 12, 2015
2 parents 7f7cee9 + eb809e2 commit 52249aa
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 3 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,17 @@
CHANGELOG
=========

1.7.34
=======

* bugfix:Installation: Fix bundled installer when running
python 2.6
(`issue 1381 https://github.com/aws/aws-cli/pull/1381`)
* bugfix:Installation: Fix minimum required version of pip
to install the AWS CLI using python2.6
(`issue 1383 https://github.com/aws/aws-cli/pull/1382`)


1.7.33
======

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.7.33'
__version__ = '1.7.34'

#
# Get our data path to be added to botocore's search path
Expand Down
2 changes: 1 addition & 1 deletion doc/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
# The short X.Y version.
version = '1.7.'
# The full version, including alpha/beta/rc tags.
release = '1.7.33'
release = '1.7.34'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
import awscli


requires = ['botocore==1.0.0b2',
requires = ['botocore==1.0.0b3',
'bcdoc>=0.16.0,<0.17.0',
'colorama>=0.2.5,<=0.3.3',
'docutils>=0.10',
Expand Down

0 comments on commit 52249aa

Please sign in to comment.