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

Commit 212c3dc

Browse files
committed
Bump version to 0.6.1
1 parent 538b972 commit 212c3dc

File tree

4 files changed

+12
-5
lines changed

4 files changed

+12
-5
lines changed

CHANGES.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,13 @@
33

44
Here you can see the full list of changes between each BioSPPy release.
55

6+
Version 0.6.1
7+
-------------
8+
9+
Released on August 20th 2018
10+
11+
- Fixed source file encoding
12+
613
Version 0.6.0
714
-------------
815

biosppy/__version__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@
99
:license: BSD 3-clause, see LICENSE for more details.
1010
"""
1111

12-
VERSION = (0, 6, 0)
12+
VERSION = (0, 6, 1)
1313
__version__ = '.'.join(map(str, VERSION))

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ def __getattr__(cls, name):
8585
# built documents.
8686
#
8787
# The short X.Y version.
88-
version = '0.6.0'
88+
version = '0.6.1'
8989
# The full version, including alpha/beta/rc tags.
9090
release = version
9191

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -101,9 +101,9 @@ def run(self):
101101
self.status('Uploading the package to PyPI via Twine…')
102102
os.system('twine upload dist/*')
103103

104-
self.status('Pushing git tags…')
105-
os.system('git tag v{0}'.format(about['__version__']))
106-
os.system('git push --tags')
104+
# self.status('Pushing git tags…')
105+
# os.system('git tag v{0}'.format(about['__version__']))
106+
# os.system('git push --tags')
107107

108108
sys.exit()
109109

0 commit comments

Comments
 (0)