diff --git a/.bumpversion.cfg b/.bumpversion.cfg index ee1f7756..ca41720e 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.1.1 +current_version = 0.2.0 commit = True [bumpversion:file:setup.py] @@ -21,3 +21,4 @@ replace = __version__ = '{new_version}' [bumpversion:file:src/hangar/diagnostics/__init__.py] search = __version__ = '{current_version}' replace = __version__ = '{new_version}' + diff --git a/README.rst b/README.rst index f0d1cbd5..33c063bf 100644 --- a/README.rst +++ b/README.rst @@ -35,9 +35,9 @@ Overview :alt: PyPI Package latest release :target: https://pypi.org/project/hangar -.. |commits-since| image:: https://img.shields.io/github/commits-since/tensorwerk/hangar-py/v0.1.1.svg +.. |commits-since| image:: https://img.shields.io/github/commits-since/tensorwerk/hangar-py/v0.2.0.svg :alt: Commits since latest release - :target: https://github.com/tensorwerk/hangar-py/compare/v0.1.1...master + :target: https://github.com/tensorwerk/hangar-py/compare/v0.2.0...master .. |wheel| image:: https://img.shields.io/pypi/wheel/hangar.svg :alt: PyPI Wheel diff --git a/docs/conf.py b/docs/conf.py index 28efde95..61b9086f 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -36,7 +36,7 @@ year = '2019-2020' author = 'Richard Izzo' copyright = '{0}, {1}'.format(year, author) -version = release = '0.1.1' +version = release = '0.2.0' pygments_style = 'default' pygments_lexer = 'PythonConsoleLexer' diff --git a/setup.py b/setup.py index 00de41af..2fde6747 100644 --- a/setup.py +++ b/setup.py @@ -35,7 +35,7 @@ def read(*names, **kwargs): setup( name='hangar', - version='0.1.1', + version='0.2.0', license='Apache 2.0', description='Hangar is version control for tensor data. Commit, branch, merge, revert, and collaborate in the data-defined software era.', long_description=read('README.rst'), diff --git a/src/hangar/__init__.py b/src/hangar/__init__.py index cf61c536..58ee3e46 100644 --- a/src/hangar/__init__.py +++ b/src/hangar/__init__.py @@ -1,4 +1,4 @@ -__version__ = '0.1.1' +__version__ = '0.2.0' __all__ = ['Repository', 'serve', 'make_tf_dataset', 'make_torch_dataset'] from functools import partial diff --git a/src/hangar/diagnostics/__init__.py b/src/hangar/diagnostics/__init__.py index 2ea855ed..792f1e11 100644 --- a/src/hangar/diagnostics/__init__.py +++ b/src/hangar/diagnostics/__init__.py @@ -1,4 +1,4 @@ -__version__ = '0.1.1' +__version__ = '0.2.0' from .graphing import Graph