diff --git a/HISTORY.rst b/HISTORY.rst index 0298cb8..6189902 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -2,7 +2,12 @@ History ======= -0.0.1 (2020-05-02) +0.2.0 (2020-05-03) +------------------ + +* Add module with legacy scripts + +0.1.0 (2020-05-02) ------------------ * First release on PyPI. diff --git a/setup.py b/setup.py index c3c28b9..3c55a5f 100644 --- a/setup.py +++ b/setup.py @@ -48,6 +48,6 @@ test_suite="tests", tests_require=test_requirements, url="https://github.com/g4brielvs/python-tomita", - version="version='0.1.0'", + version="0.2.0", zip_safe=False, ) diff --git a/tomita/__init__.py b/tomita/__init__.py index d6a0aee..8f709d2 100644 --- a/tomita/__init__.py +++ b/tomita/__init__.py @@ -1,5 +1,5 @@ """Top-level package for python-tomita.""" -__author__ = """Gabriel Stefanini Vicente""" +__author__ = "g4brielvs" __email__ = "tomita@g4brielvs.me" -__version__ = "0.1.0" +__version__ = "0.2.0"