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