Cutting release

This commit is contained in:
Michael Lazar 2020-03-31 00:40:10 -04:00
parent 8850915752
commit f6952559dd
3 changed files with 6 additions and 4 deletions

View File

@ -2,8 +2,10 @@
### Unreleased ### Unreleased
- A hostname can now be specified in route patterns, to facilitate virtual ### v0.2.1 (2012-03-31)
hosting on a single jetforce server.
- 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 - Route patterns now use ``re.fullmatch()`` and will no longer trigger on
partial matches. partial matches.
- Jetforce will no longer raise an exception when attempting to log dropped - Jetforce will no longer raise an exception when attempting to log dropped

View File

@ -54,7 +54,7 @@ import urllib.parse
if sys.version_info < (3, 7): if sys.version_info < (3, 7):
sys.exit("Fatal Error: jetforce requires Python 3.7+") sys.exit("Fatal Error: jetforce requires Python 3.7+")
__version__ = "0.2.0" __version__ = "0.2.1"
__title__ = "Jetforce Gemini Server" __title__ = "Jetforce Gemini Server"
__author__ = "Michael Lazar" __author__ = "Michael Lazar"
__license__ = "Floodgap Free Software License" __license__ = "Floodgap Free Software License"

View File

@ -10,7 +10,7 @@ def long_description():
setuptools.setup( setuptools.setup(
name="Jetforce", name="Jetforce",
version="0.2.0", version="0.2.1",
url="https://github.com/michael-lazar/jetforce", url="https://github.com/michael-lazar/jetforce",
license="Other/Proprietary License", license="Other/Proprietary License",
author="Michael Lazar", author="Michael Lazar",