Skip to content

Commit be7d40e

Browse files
authored
Release 0.4.0 (#167)
Bump version: 0.4.0b0 → 0.4.0
1 parent ede040c commit be7d40e

File tree

6 files changed

+22
-16
lines changed

6 files changed

+22
-16
lines changed

.bumpversion.cfg

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
[bumpversion]
2-
current_version = 0.4.0b0
2+
current_version = 0.4.0
33
commit = True
44
tag = False
55
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)((?P<release>[a-z]+)(?P<build>\d+))?
6-
serialize =
7-
{major}.{minor}.{patch}{release}{build}
8-
{major}.{minor}.{patch}
6+
serialize =
7+
{major}.{minor}.{patch}{release}{build}
8+
{major}.{minor}.{patch}
99

1010
[bumpversion:part:release]
1111
optional_value = rc
12-
values =
13-
b
14-
rc
12+
values =
13+
b
14+
rc
1515

1616
[bumpversion:file:setup.py]
1717
search = version='{current_version}'
@@ -28,3 +28,4 @@ replace = __version__ = '{new_version}'
2828
[bumpversion:file:src/hangar/diagnostics/__init__.py]
2929
search = __version__ = '{current_version}'
3030
replace = __version__ = '{new_version}'
31+

CHANGELOG.rst

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,12 @@
22
Change Log
33
==========
44

5-
`In-Progress`_
6-
==============
5+
.. `In-Progress`_
6+
.. ==============
7+
8+
9+
`v0.4.0`_ (2019-11-21)
10+
======================
711

812
New Features
913
------------
@@ -164,7 +168,7 @@ Breaking changes
164168

165169

166170
`v0.1.1`_ (2019-05-24)
167-
===========================
171+
======================
168172

169173
Bug Fixes
170174
---------
@@ -173,7 +177,7 @@ Bug Fixes
173177

174178

175179
`v0.1.0`_ (2019-05-24)
176-
===========================
180+
======================
177181

178182
New Features
179183
------------
@@ -229,4 +233,5 @@ Breaking changes
229233
.. _v0.1.1: https://github.com/tensorwerk/hangar-py/compare/v0.1.0...v0.1.1
230234
.. _v0.2.0: https://github.com/tensorwerk/hangar-py/compare/v0.1.1...v0.2.0
231235
.. _v0.3.0: https://github.com/tensorwerk/hangar-py/compare/v0.2.0...v0.3.0
232-
.. _In-Progress: https://github.com/tensorwerk/hangar-py/compare/v0.3.0...master
236+
.. _v0.4.0: https://github.com/tensorwerk/hangar-py/compare/v0.3.0...v0.4.0
237+
.. _In-Progress: https://github.com/tensorwerk/hangar-py/compare/v0.4.0...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.4.0b0'
43+
version = release = '0.4.0'
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
@@ -22,7 +22,7 @@ def read(*names, **kwargs):
2222

2323
setup(
2424
name='hangar',
25-
version='0.4.0b0',
25+
version='0.4.0',
2626
license='Apache 2.0',
2727
description=
2828
'Hangar is version control for tensor data. Commit, branch, merge, revert, and collaborate in the data-defined software era.',

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.4.0b0'
1+
__version__ = '0.4.0'
22
__all__ = ['Repository', 'make_tf_dataset', 'make_torch_dataset']
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.4.0b0'
1+
__version__ = '0.4.0'
22

33
from .graphing import Graph
44

0 commit comments

Comments
 (0)