From 3dbbca9cf5d3221736d3a987432b56db6342337d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Lafr=C3=A9choux?= Date: Fri, 2 Mar 2018 10:22:35 +0100 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.1.1=20=E2=86=92=200.2.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- flask_rest_api/__init__.py | 2 +- setup.cfg | 2 +- setup.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/flask_rest_api/__init__.py b/flask_rest_api/__init__.py index e9872933..51ff9596 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.1' +__version__ = '0.2.0' class Api: diff --git a/setup.cfg b/setup.cfg index 3c61b722..4433b9c7 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.1.1 +current_version = 0.2.0 commit = True tag = False diff --git a/setup.py b/setup.py index 420bc0df..3c72fba9 100644 --- a/setup.py +++ b/setup.py @@ -8,7 +8,7 @@ setup( name='flask-rest-api', - version='0.1.1', + version='0.2.0', description='Build a REST API with Flask', long_description=long_description, url='https://github.com/Nobatek/flask-rest-api',