Skip to content

Commit

Permalink
Release v0.5.2 (#202)
Browse files Browse the repository at this point in the history
* updated changelog

* Bump version: 0.5.1 → 0.5.2
  • Loading branch information
rlizzo authored May 8, 2020
1 parent 82b4c56 commit 88922c7
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 10 deletions.
3 changes: 1 addition & 2 deletions .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.5.1
current_version = 0.5.2
commit = True
tag = False
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\.(?P<release>[a-z]+)(?P<build>\d+))?
Expand Down Expand Up @@ -31,4 +31,3 @@ replace = __version__ = '{new_version}'
[bumpversion:file:src/hangar/diagnostics/__init__.py]
search = __version__ = '{current_version}'
replace = __version__ = '{new_version}'

9 changes: 5 additions & 4 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ Change Log
==========


_`In-Progress`
==============
`0.5.2`_ (2020-05-08)
=====================

New Features
------------
Expand Down Expand Up @@ -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
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
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.5.1'
__version__ = '0.5.2'
__all__ = ('make_torch_dataset', 'make_tf_dataset', 'Repository')

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.5.1'
__version__ = '0.5.2'

from .graphing import Graph

Expand Down

0 comments on commit 88922c7

Please sign in to comment.