diff --git a/CHANGELOG.md b/CHANGELOG.md index f9bf2ec..3f1000f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,13 +1,15 @@ # Jetforce Changelog -### v0.9.0 (unreleased) +### Unreleased + +### v0.9.0 (2021-05-12) #### Fixes - Fix not including trailing slashes in $PATH_INFO for CGI scripts. - Fix not sending the complete certificate chain for TLS certificates - that include it. -- Fix incorrect type signature for the EnvironDict type. + that include a chain. +- Fix incorrect type signature for the EnvironDict type class. #### Changes diff --git a/jetforce/__version__.py b/jetforce/__version__.py index deded32..3e2f46a 100644 --- a/jetforce/__version__.py +++ b/jetforce/__version__.py @@ -1 +1 @@ -__version__ = "0.8.2" +__version__ = "0.9.0" diff --git a/setup.py b/setup.py index 6ea9476..d7267cd 100644 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ def long_description() -> str: setuptools.setup( name="Jetforce", - version="0.8.2", + version="0.9.0", url="https://github.com/michael-lazar/jetforce", license="Other/Proprietary License", author="Michael Lazar",