Cutting release
This commit is contained in:
parent
8850915752
commit
f6952559dd
|
@ -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
|
||||
|
|
|
@ -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"
|
||||
|
|
Loading…
Reference in New Issue