Skip to content

Commit 88922c7

Browse files
authored
Release v0.5.2 (#202)
* updated changelog * Bump version: 0.5.1 → 0.5.2
1 parent 82b4c56 commit 88922c7

File tree

6 files changed

+10
-10
lines changed

6 files changed

+10
-10
lines changed

.bumpversion.cfg

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 0.5.1
2+
current_version = 0.5.2
33
commit = True
44
tag = False
55
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\.(?P<release>[a-z]+)(?P<build>\d+))?
@@ -31,4 +31,3 @@ replace = __version__ = '{new_version}'
3131
[bumpversion:file:src/hangar/diagnostics/__init__.py]
3232
search = __version__ = '{current_version}'
3333
replace = __version__ = '{new_version}'
34-

CHANGELOG.rst

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ Change Log
33
==========
44

55

6-
_`In-Progress`
7-
==============
6+
`0.5.2`_ (2020-05-08)
7+
=====================
88

99
New Features
1010
------------
@@ -369,5 +369,6 @@ Breaking changes
369369
.. _v0.3.0: https://github.com/tensorwerk/hangar-py/compare/v0.2.0...v0.3.0
370370
.. _v0.4.0: https://github.com/tensorwerk/hangar-py/compare/v0.3.0...v0.4.0
371371
.. _v0.5.0: https://github.com/tensorwerk/hangar-py/compare/v0.4.0...v0.5.0
372-
.. _v0.5.1 https://github.com/tensorwerk/hangar-py/compare/v0.5.0...v0.5.1
373-
.. _In-Progress: https://github.com/tensorwerk/hangar-py/compare/v0.5.1...master
372+
.. _v0.5.1: https://github.com/tensorwerk/hangar-py/compare/v0.5.0...v0.5.1
373+
.. _v0.5.2: https://github.com/tensorwerk/hangar-py/compare/v0.5.1...v0.5.2
374+
.. _In-Progress: https://github.com/tensorwerk/hangar-py/compare/v0.5.2...master

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
year = '2019-2020'
4141
author = 'Richard Izzo'
4242
copyright = '{0}, {1}'.format(year, author)
43-
version = release = '0.5.1'
43+
version = release = '0.5.2'
4444

4545
pygments_style = 'default'
4646
pygments_lexer = 'PythonConsoleLexer'

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ def run(self):
176176

177177
setup(
178178
name='hangar',
179-
version='0.5.1',
179+
version='0.5.2',
180180
license='Apache 2.0',
181181
# Package Meta Info (for PyPi)
182182
description=SHORT_DESCRIPTION,

src/hangar/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = '0.5.1'
1+
__version__ = '0.5.2'
22
__all__ = ('make_torch_dataset', 'make_tf_dataset', 'Repository')
33

44
from functools import partial

src/hangar/diagnostics/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = '0.5.1'
1+
__version__ = '0.5.2'
22

33
from .graphing import Graph
44

0 commit comments

Comments
 (0)