Skip to content

Commit

Permalink
Merge branch 'release-0.0.17'
Browse files Browse the repository at this point in the history
  • Loading branch information
kyleknap committed May 7, 2015
2 parents 17398d2 + 52741c0 commit 17c6c57
Show file tree
Hide file tree
Showing 40 changed files with 3,076 additions and 220 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ tests/.coverage
# Test state / virtualenvs
.tox
.coverage
coverage.xml
nosetests.xml

# Common virtualenv names
venv
Expand Down
10 changes: 4 additions & 6 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,7 @@ python:
- "3.4"
sudo: false
install:
- if [[ $TRAVIS_PYTHON_VERSION == '2.6' ]]; then travis_retry pip install -r requirements26.txt; fi
- if [[ $TRAVIS_PYTHON_VERSION == 2.* ]]; then travis_retry pip install -r requirements2.txt; fi
- travis_retry pip install -r requirements.txt
- travis_retry pip install coverage python-coveralls
script: nosetests --with-coverage --cover-erase
after_success: coveralls
- python scripts/ci/install
script: python scripts/ci/run-tests
after_success:
- pip install python-coveralls && cd tests && coveralls
7 changes: 7 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
Changelog
=========

0.0.17 - 2015-05-07
-------------------

* feature:Botocore: Update to Botocore 0.107.0.

* Adopt new data structure model.

0.0.16 - 2015-04-20
-------------------

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


__author__ = 'Amazon Web Services'
__version__ = '0.0.16'
__version__ = '0.0.17'


# The default Boto3 session; autoloaded when needed.
Expand Down
File renamed without changes.
Loading

0 comments on commit 17c6c57

Please sign in to comment.