diff --git a/HISTORY.rst b/HISTORY.rst index f7bfdc1..4d4c2a5 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -2,7 +2,7 @@ History ======= -Next version +0.2.0 (2018-04-14) ------------------ * Added PageNotFoundView (JSON-based 404 views) diff --git a/setup.cfg b/setup.cfg index fe6ac35..12bcc62 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.1.0 +current_version = 0.2.0 commit = True tag = True @@ -20,4 +20,4 @@ max-line-length = 120 [aliases] test = pytest -# Define setup.py command aliases here + diff --git a/setup.py b/setup.py index 051185d..f5e9349 100644 --- a/setup.py +++ b/setup.py @@ -52,6 +52,6 @@ test_suite='tests', tests_require=test_requirements, url='https://github.com/thorgate/tg-apicore', - version='0.1.0', + version='0.2.0', zip_safe=False, ) diff --git a/tg_apicore/__init__.py b/tg_apicore/__init__.py index 13b3304..110d2d7 100644 --- a/tg_apicore/__init__.py +++ b/tg_apicore/__init__.py @@ -2,4 +2,4 @@ __author__ = """Thorgate""" __email__ = 'code@thorgate.eu' -__version__ = '0.1.0' +__version__ = '0.2.0'