From 17b31f305f34f7638928cd94b502f5d699bf7ee5 Mon Sep 17 00:00:00 2001 From: Olof Harrysson Date: Wed, 23 Dec 2020 22:39:31 +0100 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.1.0=20=E2=86=92=200.2.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- anyfig/__init__.py | 2 +- setup.cfg | 3 ++- setup.py | 2 +- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/anyfig/__init__.py b/anyfig/__init__.py index 78e7de5..1517e1d 100644 --- a/anyfig/__init__.py +++ b/anyfig/__init__.py @@ -1,6 +1,6 @@ __author__ = """Olof Harrysson""" __email__ = 'harrysson.olof@gmail.com' -__version__ = '0.1.0' +__version__ = '0.2.0' import sys from functools import wraps diff --git a/setup.cfg b/setup.cfg index a08ff92..d26ff17 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 @@ -19,3 +19,4 @@ test = pytest [tool:pytest] collect_ignore = ['setup.py'] + diff --git a/setup.py b/setup.py index 165b9f3..25b108d 100644 --- a/setup.py +++ b/setup.py @@ -49,6 +49,6 @@ test_suite='tests', tests_require=test_requirements, url='https://github.com/OlofHarrysson/anyfig', - version='0.1.0', + version='0.2.0', zip_safe=False, )