diff --git a/.bumpversion.cfg b/.bumpversion.cfg index e7211529..32ced5ef 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.5.1 +current_version = 0.5.2 commit = True tag = False parse = (?P\d+)\.(?P\d+)\.(?P\d+)(\.(?P[a-z]+)(?P\d+))? @@ -31,4 +31,3 @@ replace = __version__ = '{new_version}' [bumpversion:file:src/hangar/diagnostics/__init__.py] search = __version__ = '{current_version}' replace = __version__ = '{new_version}' - diff --git a/CHANGELOG.rst b/CHANGELOG.rst index d82a72ca..a1c5c60f 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -3,8 +3,8 @@ Change Log ========== -_`In-Progress` -============== +`0.5.2`_ (2020-05-08) +===================== New Features ------------ @@ -369,5 +369,6 @@ Breaking changes .. _v0.3.0: https://github.com/tensorwerk/hangar-py/compare/v0.2.0...v0.3.0 .. _v0.4.0: https://github.com/tensorwerk/hangar-py/compare/v0.3.0...v0.4.0 .. _v0.5.0: https://github.com/tensorwerk/hangar-py/compare/v0.4.0...v0.5.0 -.. _v0.5.1 https://github.com/tensorwerk/hangar-py/compare/v0.5.0...v0.5.1 -.. _In-Progress: https://github.com/tensorwerk/hangar-py/compare/v0.5.1...master +.. _v0.5.1: https://github.com/tensorwerk/hangar-py/compare/v0.5.0...v0.5.1 +.. _v0.5.2: https://github.com/tensorwerk/hangar-py/compare/v0.5.1...v0.5.2 +.. _In-Progress: https://github.com/tensorwerk/hangar-py/compare/v0.5.2...master diff --git a/docs/conf.py b/docs/conf.py index cba4f5a4..1b42cbca 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -40,7 +40,7 @@ year = '2019-2020' author = 'Richard Izzo' copyright = '{0}, {1}'.format(year, author) -version = release = '0.5.1' +version = release = '0.5.2' pygments_style = 'default' pygments_lexer = 'PythonConsoleLexer' diff --git a/setup.py b/setup.py index 4b8920f0..4c91aeaa 100644 --- a/setup.py +++ b/setup.py @@ -176,7 +176,7 @@ def run(self): setup( name='hangar', - version='0.5.1', + version='0.5.2', license='Apache 2.0', # Package Meta Info (for PyPi) description=SHORT_DESCRIPTION, diff --git a/src/hangar/__init__.py b/src/hangar/__init__.py index bd56ea89..4de95fb1 100644 --- a/src/hangar/__init__.py +++ b/src/hangar/__init__.py @@ -1,4 +1,4 @@ -__version__ = '0.5.1' +__version__ = '0.5.2' __all__ = ('make_torch_dataset', 'make_tf_dataset', 'Repository') from functools import partial diff --git a/src/hangar/diagnostics/__init__.py b/src/hangar/diagnostics/__init__.py index db897415..1f5ae5d2 100644 --- a/src/hangar/diagnostics/__init__.py +++ b/src/hangar/diagnostics/__init__.py @@ -1,4 +1,4 @@ -__version__ = '0.5.1' +__version__ = '0.5.2' from .graphing import Graph