Bump version
This commit is contained in:
parent
0b0c68ee9c
commit
79d457637c
|
@ -0,0 +1,11 @@
|
|||
# Jetforce Changelog
|
||||
|
||||
### v0.0.5 (2019-08-12)
|
||||
|
||||
Updates to conform to the v0.9.1 Gemini specification
|
||||
|
||||
- The request line is now expected to be a full URL instead of a PATH.
|
||||
- Response status codes have been updated to match the new specification.
|
||||
- The server now requires a "hostname" be specified via a command line argument.
|
||||
- Request URLs that contain other protocols / hosts are disallowed.
|
||||
- A simple gemini client, ``jetforce-client``, is now included.
|
|
@ -16,7 +16,7 @@ import urllib.parse
|
|||
if sys.version_info < (3, 7):
|
||||
sys.exit("Fatal Error: jetforce requires Python 3.7+")
|
||||
|
||||
__version__ = "0.0.4"
|
||||
__version__ = "0.0.5"
|
||||
__title__ = "Jetforce Gemini Server"
|
||||
__author__ = "Michael Lazar"
|
||||
__license__ = "GNU General Public License v3.0"
|
||||
|
@ -94,7 +94,6 @@ class StaticDirectoryApp:
|
|||
self.root = pathlib.Path(root).resolve(strict=True)
|
||||
self.environ = environ
|
||||
self.send_status = send_status
|
||||
|
||||
self.mimetypes = mimetypes.MimeTypes()
|
||||
|
||||
@classmethod
|
||||
|
|
Loading…
Reference in New Issue