From 2ead4cc0b4a2897b8800b46d584a84e5e1ca8984 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Lafrechoux?= Date: Fri, 16 Feb 2018 22:12:21 +0100 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.1.0=20=E2=86=92=200.1.1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- flask_rest_api/__init__.py | 2 +- setup.cfg | 3 ++- setup.py | 2 +- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/flask_rest_api/__init__.py b/flask_rest_api/__init__.py index 296d2550..6563770e 100644 --- a/flask_rest_api/__init__.py +++ b/flask_rest_api/__init__.py @@ -10,7 +10,7 @@ from .error_handler import handle_http_exception -__version__ = '0.1.0' +__version__ = '0.1.1' class Api: diff --git a/setup.cfg b/setup.cfg index 8860bddc..3c61b722 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.1.0 +current_version = 0.1.1 commit = True tag = False @@ -10,3 +10,4 @@ replace = version='{new_version}' [bumpversion:file:flask_rest_api/__init__.py] search = __version__ = '{current_version}' replace = __version__ = '{new_version}' + diff --git a/setup.py b/setup.py index 60a08fbd..420bc0df 100644 --- a/setup.py +++ b/setup.py @@ -8,7 +8,7 @@ setup( name='flask-rest-api', - version='0.1.0', + version='0.1.1', description='Build a REST API with Flask', long_description=long_description, url='https://github.com/Nobatek/flask-rest-api',