Skip to content

Commit

Permalink
Version 0.52.0
Browse files Browse the repository at this point in the history
  • Loading branch information
william-silversmith committed Jul 3, 2019
1 parent 2a84718 commit ddd2b17
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion cloudvolume/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,4 +64,4 @@
from . import microviewer
from .microviewer import view, hyperview

__version__ = '0.51.0'
__version__ = '0.52.0'
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ def requirements():

setuptools.setup(
name="cloud-volume",
version="0.51.0",
version="0.52.0",
setup_requires=['numpy'],
install_requires=requirements(),
extras_require={
Expand Down
2 changes: 1 addition & 1 deletion setversion.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ def materialize_version(version):
print("Updated __init__.py with version " + version)

assert len(version) < 9
subprocess.check_output("git reset && git add cloudvolume/__init__.py && git commit -m 'Version {}'".format(version), shell=True)
subprocess.check_output("git reset && git add cloudvolume/__init__.py setup.py && git commit -m 'Version {}'".format(version), shell=True)

try:
subprocess.check_output(['git', 'tag', '-a', version, '-m', message])
Expand Down

0 comments on commit ddd2b17

Please sign in to comment.