Upping version
This commit is contained in:
parent
4160aefe94
commit
522814f77f
11
CHANGELOG.md
11
CHANGELOG.md
|
@ -1,5 +1,16 @@
|
||||||
# Jetforce Changelog
|
# Jetforce Changelog
|
||||||
|
|
||||||
|
### v0.0.6 (2019-08-22)
|
||||||
|
|
||||||
|
- Significant refactoring of the base application interface.
|
||||||
|
- Added built-in support for URL routing based on the request path.
|
||||||
|
- Added support for accepting input using query strings.
|
||||||
|
- Files with the ".gmi" extension are now recognized as text/gemini.
|
||||||
|
- Added a new examples/ directory with the following applications
|
||||||
|
- A bare bones echo server
|
||||||
|
- A guestbook application
|
||||||
|
- An HTTP/HTTPS proxy server
|
||||||
|
|
||||||
### v0.0.5 (2019-08-12)
|
### v0.0.5 (2019-08-12)
|
||||||
|
|
||||||
Updates to conform to the v0.9.1 Gemini specification
|
Updates to conform to the v0.9.1 Gemini specification
|
||||||
|
|
|
@ -18,7 +18,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.0.5"
|
__version__ = "0.0.6"
|
||||||
__title__ = "Jetforce Gemini Server"
|
__title__ = "Jetforce Gemini Server"
|
||||||
__author__ = "Michael Lazar"
|
__author__ = "Michael Lazar"
|
||||||
__license__ = "GNU General Public License v3.0"
|
__license__ = "GNU General Public License v3.0"
|
||||||
|
|
2
setup.py
2
setup.py
|
@ -10,7 +10,7 @@ def long_description():
|
||||||
|
|
||||||
setuptools.setup(
|
setuptools.setup(
|
||||||
name="Jetforce",
|
name="Jetforce",
|
||||||
version="0.0.5",
|
version="0.0.6",
|
||||||
url="https://github.com/michael-lazar/jetforce",
|
url="https://github.com/michael-lazar/jetforce",
|
||||||
license="GPL-3.0",
|
license="GPL-3.0",
|
||||||
author="Michael Lazar",
|
author="Michael Lazar",
|
||||||
|
|
Loading…
Reference in New Issue