diff --git a/CHANGES.md b/CHANGES.md index 018b2675..d21b9fb2 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -3,6 +3,13 @@ Here you can see the full list of changes between each BioSPPy release. +Version 0.6.1 +------------- + +Released on August 20th 2018 + +- Fixed source file encoding + Version 0.6.0 ------------- diff --git a/biosppy/__version__.py b/biosppy/__version__.py index 635d2fe7..1e8183e4 100644 --- a/biosppy/__version__.py +++ b/biosppy/__version__.py @@ -9,5 +9,5 @@ :license: BSD 3-clause, see LICENSE for more details. """ -VERSION = (0, 6, 0) +VERSION = (0, 6, 1) __version__ = '.'.join(map(str, VERSION)) diff --git a/docs/conf.py b/docs/conf.py index a11ce047..4b65dab4 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -85,7 +85,7 @@ def __getattr__(cls, name): # built documents. # # The short X.Y version. -version = '0.6.0' +version = '0.6.1' # The full version, including alpha/beta/rc tags. release = version diff --git a/setup.py b/setup.py index c179cfed..e9e3b988 100644 --- a/setup.py +++ b/setup.py @@ -101,9 +101,9 @@ def run(self): self.status('Uploading the package to PyPI via Twine…') os.system('twine upload dist/*') - self.status('Pushing git tags…') - os.system('git tag v{0}'.format(about['__version__'])) - os.system('git push --tags') + # self.status('Pushing git tags…') + # os.system('git tag v{0}'.format(about['__version__'])) + # os.system('git push --tags') sys.exit()