diff --git a/CHANGELOG.md b/CHANGELOG.md index 9dc77fb..8b362e3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,10 +2,11 @@ ### Unreleased -#### Changes +### v0.9.1 (2022-07-08) - Fix ``strict_trailing_slash`` argument being applied as `strict_port` when specified on a route decorator. +- Add support for python 3.10. ### v0.9.0 (2021-05-12) diff --git a/jetforce/__version__.py b/jetforce/__version__.py index 3e2f46a..d69d16e 100644 --- a/jetforce/__version__.py +++ b/jetforce/__version__.py @@ -1 +1 @@ -__version__ = "0.9.0" +__version__ = "0.9.1" diff --git a/setup.py b/setup.py index d7267cd..07c0f8c 100644 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ def long_description() -> str: setuptools.setup( name="Jetforce", - version="0.9.0", + version="0.9.1", url="https://github.com/michael-lazar/jetforce", license="Other/Proprietary License", author="Michael Lazar",