Skip to content

Commit

Permalink
Bump version: 0.1.1 → 0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
rlizzo committed Aug 9, 2019
1 parent 25ae184 commit 6cfcb88
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 7 deletions.
3 changes: 2 additions & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.1.1
current_version = 0.2.0
commit = True

[bumpversion:file:setup.py]
Expand All @@ -21,3 +21,4 @@ replace = __version__ = '{new_version}'
[bumpversion:file:src/hangar/diagnostics/__init__.py]
search = __version__ = '{current_version}'
replace = __version__ = '{new_version}'

4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'),
Expand Down
2 changes: 1 addition & 1 deletion src/hangar/__init__.py
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/hangar/diagnostics/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = '0.1.1'
__version__ = '0.2.0'

from .graphing import Graph

Expand Down

0 comments on commit 6cfcb88

Please sign in to comment.