diff --git a/CHANGELOG.md b/CHANGELOG.md index c2054c2..094c2a2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +## v1.1.7 + - fixes python3 TypeError (#113, @l4r-s) + - Change write mode to non-binary. (#111, @hdost) + - Add python3 testing (#110, @hdost) + - add codecov (#112, @piotr1212) + ## v1.1.6 - Python 3 support (PR#107, @piotr1212) - Use --copy-dest, enabling the rsync algorithm when copying from remote to staging (PR#106, @luke-heberling) diff --git a/carbonate/__init__.py b/carbonate/__init__.py index 76605bf..c87c6e7 100644 --- a/carbonate/__init__.py +++ b/carbonate/__init__.py @@ -2,7 +2,7 @@ Tools for managing a federated Carbon cluster. """ -__version_info__ = ('1', '1', '6') +__version_info__ = ('1', '1', '7') __version__ = '.'.join(__version_info__) diff --git a/setup.py b/setup.py index 771bc35..61a0db5 100644 --- a/setup.py +++ b/setup.py @@ -50,7 +50,7 @@ def read(fname): ] }, classifiers=[ - 'License :: OSI Approved :: MIT License' + 'License :: OSI Approved :: MIT License', 'Programming Language :: Python', 'Programming Language :: Python :: 2', 'Programming Language :: Python :: 3',