Skip to content

Commit

Permalink
Bump version: 0.5.0 → 0.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
sam-kleiner committed Aug 11, 2019
1 parent 6685c67 commit 78a402b
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.5.0
current_version = 0.5.1
commit = True
tag = True
tag_name = {new_version}
Expand Down
11 changes: 11 additions & 0 deletions example/README.md
Original file line number Diff line number Diff line change
@@ -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
```
2 changes: 1 addition & 1 deletion falcon_openapi/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
from .router import OpenApiRouter

__version__ = "0.5.0"
__version__ = "0.5.1"
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit 78a402b

Please sign in to comment.