From 78a402bdb419882da8059d2430164ff26bd4d5c5 Mon Sep 17 00:00:00 2001 From: Sam Kleiner Date: Sun, 11 Aug 2019 16:23:18 -0400 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.5.0=20=E2=86=92=200.5.1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .bumpversion.cfg | 2 +- example/README.md | 11 +++++++++++ falcon_openapi/__init__.py | 2 +- setup.py | 2 +- 4 files changed, 14 insertions(+), 3 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 7b7ecac..c65e0c2 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.5.0 +current_version = 0.5.1 commit = True tag = True tag_name = {new_version} diff --git a/example/README.md b/example/README.md index e69de29..24fb510 100644 --- a/example/README.md +++ b/example/README.md @@ -0,0 +1,11 @@ +Example app to show proper folder structure + +Run with: + +```bash +pipenv shell +pipenv install + +gunicorn --reload look.app # OR python look/app.py +curl http://127.0.0.1:8000/controller +``` \ No newline at end of file diff --git a/falcon_openapi/__init__.py b/falcon_openapi/__init__.py index 0be0c8d..afc29c5 100644 --- a/falcon_openapi/__init__.py +++ b/falcon_openapi/__init__.py @@ -1,3 +1,3 @@ from .router import OpenApiRouter -__version__ = "0.5.0" +__version__ = "0.5.1" diff --git a/setup.py b/setup.py index d938ece..9c44ad3 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ setup( name="falcon-openapi", python_requires=">3.5.0", - version="0.5.0", + version="0.5.1", description="Falcon router to map openapi spec to resources", long_description=readme, long_description_content_type="text/markdown",