diff --git a/AUTHORS.rst b/AUTHORS.rst index 170fce3..9a0eb75 100644 --- a/AUTHORS.rst +++ b/AUTHORS.rst @@ -12,3 +12,4 @@ Contributors * XdpAreKid <2161220107@email.szu.edu.cn> * Jan Steinke +* Josh Chen diff --git a/HISTORY.rst b/HISTORY.rst index c188085..32e6689 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -2,7 +2,23 @@ History ======= -0.1.0 (2017-02-06) +0.2.0 (2017-06-07) +------------------ + +* Add RESTful API + +* Rework configuration loaders + +* Major refactor + +0.1.2 (2017-06-07) +------------------ + +* Fix Keras loading issues + +* Check tensorflow installation before installing + +0.1.1 (2017-05-16) ------------------ * First release on PyPI. diff --git a/docs/conf.py b/docs/conf.py index 0de531c..631fac7 100755 --- a/docs/conf.py +++ b/docs/conf.py @@ -62,9 +62,9 @@ # the built documents. # # The short X.Y version. -version = 'v0.1.2' +version = 'v0.2.0' # The full version, including alpha/beta/rc tags. -release = 'v0.1.2' +release = 'v0.2.0' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/picasso/__init__.py b/picasso/__init__.py index 9d21010..9448eb2 100644 --- a/picasso/__init__.py +++ b/picasso/__init__.py @@ -2,7 +2,7 @@ __author__ = """Ryan Henderson""" __email__ = 'ryan@merantix.com' -__version__ = 'v0.1.2' +__version__ = 'v0.2.0' from flask import Flask import os diff --git a/setup.cfg b/setup.cfg index c3659ed..824246f 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = v0.1.2 +current_version = v0.2.0 commit = True tag = True diff --git a/setup.py b/setup.py index a3aec5e..16aff43 100644 --- a/setup.py +++ b/setup.py @@ -54,7 +54,7 @@ setup( name='picasso_viz', - version='v0.1.2', + version='v0.2.0', description="A CNN model visualizer", long_description=readme + '\n\n' + history, author="Ryan Henderson",