diff --git a/CHANGELOG.md b/CHANGELOG.md index f27d036..0e8bf8d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,8 +2,10 @@ ### Unreleased -- A hostname can now be specified in route patterns, to facilitate virtual - hosting on a single jetforce server. +### v0.2.1 (2012-03-31) + +- A hostname can now be specified in the route pattern, to facilitate running + multiple vhosts on a single jetforce server. - Route patterns now use ``re.fullmatch()`` and will no longer trigger on partial matches. - Jetforce will no longer raise an exception when attempting to log dropped diff --git a/jetforce.py b/jetforce.py index 28a5778..bc6ccc8 100755 --- a/jetforce.py +++ b/jetforce.py @@ -54,7 +54,7 @@ import urllib.parse if sys.version_info < (3, 7): sys.exit("Fatal Error: jetforce requires Python 3.7+") -__version__ = "0.2.0" +__version__ = "0.2.1" __title__ = "Jetforce Gemini Server" __author__ = "Michael Lazar" __license__ = "Floodgap Free Software License" diff --git a/setup.py b/setup.py index 471038e..8016391 100644 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ def long_description(): setuptools.setup( name="Jetforce", - version="0.2.0", + version="0.2.1", url="https://github.com/michael-lazar/jetforce", license="Other/Proprietary License", author="Michael Lazar",