Skip to content

Commit

Permalink
Merge pull request #108 from rlizzo/version-0_2_0
Browse files Browse the repository at this point in the history
Version 0.2.0
  • Loading branch information
rlizzo authored Aug 9, 2019
2 parents 848a45e + 9461197 commit a47aaf0
Show file tree
Hide file tree
Showing 8 changed files with 13 additions and 13 deletions.
4 changes: 2 additions & 2 deletions .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
[bumpversion]
current_version = 0.1.1
current_version = 0.2.0
commit = True
tag = False

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

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

`In-Progress`_
==============
`v0.2.0`_ (2019-08-09)
======================

New Features
------------
Expand Down Expand Up @@ -124,4 +124,5 @@ Breaking changes
.. _v0.0.0: https://github.com/tensorwerk/hangar-py/commit/2aff3805c66083a7fbb2ebf701ceaf38ac5165c7
.. _v0.1.0: https://github.com/tensorwerk/hangar-py/compare/v0.0.0...v0.1.0
.. _v0.1.1: https://github.com/tensorwerk/hangar-py/compare/v0.1.0...v0.1.1
.. _In-Progress: https://github.com/tensorwerk/hangar-py/compare/v0.1.1...master
.. _v_0.2.0: https://github.com/tensorwerk/hangar-py/compare/v0.1.1...v0.2.0
.. _In-Progress: https://github.com/tensorwerk/hangar-py/compare/v0.2.0...master
3 changes: 1 addition & 2 deletions MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ graft docs
graft src
graft ci
graft tests
graft examples

include .bumpversion.cfg
include .coveragerc
Expand All @@ -15,6 +14,6 @@ include CODE_OF_CONDUCT.rst
include LICENSE
include README.rst

include tox.ini .travis.yml appveyor.yml
include tox.ini .travis.yml appveyor.yml mypy.ini

global-exclude *.py[cod] __pycache__ *.so *.dylib
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 a47aaf0

Please sign in to comment.