Skip to content
This repository has been archived by the owner on Aug 2, 2022. It is now read-only.

Commit

Permalink
Bump version to 0.6.1
Browse files Browse the repository at this point in the history
  • Loading branch information
capcarr committed Aug 20, 2018
1 parent 538b972 commit 212c3dc
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 5 deletions.
7 changes: 7 additions & 0 deletions CHANGES.md
Expand Up @@ -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
-------------

Expand Down
2 changes: 1 addition & 1 deletion biosppy/__version__.py
Expand Up @@ -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))
2 changes: 1 addition & 1 deletion docs/conf.py
Expand Up @@ -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

Expand Down
6 changes: 3 additions & 3 deletions setup.py
Expand Up @@ -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()

Expand Down

0 comments on commit 212c3dc

Please sign in to comment.