diff --git a/flask_rest_api/__init__.py b/flask_rest_api/__init__.py index 251ff846..c292e7d4 100644 --- a/flask_rest_api/__init__.py +++ b/flask_rest_api/__init__.py @@ -7,7 +7,7 @@ from .pagination import Page # noqa from .error_handler import ErrorHandlerMixin -__version__ = '0.13.0' +__version__ = '0.13.1' class Api(APISpecMixin, ErrorHandlerMixin): diff --git a/setup.cfg b/setup.cfg index f04c88cd..404cecca 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.13.0 +current_version = 0.13.1 commit = True tag = False diff --git a/setup.py b/setup.py index 86f6d6ad..140b92a6 100644 --- a/setup.py +++ b/setup.py @@ -8,7 +8,7 @@ setup( name='flask-rest-api', - version='0.13.0', + version='0.13.1', description='Build a REST API with Flask', long_description=long_description, url='https://github.com/Nobatek/flask-rest-api',