Bumping version

This commit is contained in:
Michael Lazar 2019-08-29 23:51:25 -04:00
parent b923d535c3
commit 82a887288b
3 changed files with 9 additions and 8 deletions

View File

@ -1,18 +1,19 @@
# Jetforce Changelog # Jetforce Changelog
### Unreleased ### v0.0.7 (2019-08-30)
- Files with the ".gemini" extension are now recognized as text/gemini. - Added support for a primitive version of CGI scripting.
- The default index file has been changed from ".gemini" to "index.gmi". - Added support for TLS client certificate verification.
- Added a new --index-file flag that can be used to customize the name of the - The directory index file has been changed from ".gemini" to "index.gmi".
gemini file that will be served when a directory is requested. - Files with the ".gemini" extension are now recognized as *text/gemini*.
- Several minor improvements to the internal codebase and API.
### v0.0.6 (2019-08-22) ### v0.0.6 (2019-08-22)
- Significant refactoring of the base application interface. - Significant refactoring of the base application interface.
- Added built-in support for URL routing based on the request path. - Added built-in support for URL routing based on the request path.
- Added support for accepting input using query strings. - Added support for accepting input using query strings.
- Files with the ".gmi" extension are now recognized as text/gemini. - Files with the ".gmi" extension are now recognized as *text/gemini*.
- Added a new examples/ directory with the following applications - Added a new examples/ directory with the following applications
- A bare bones echo server - A bare bones echo server
- A guestbook application - A guestbook application

View File

@ -21,7 +21,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.6" __version__ = "0.0.7"
__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"

View File

@ -10,7 +10,7 @@ def long_description():
setuptools.setup( setuptools.setup(
name="Jetforce", name="Jetforce",
version="0.0.6", version="0.0.7",
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",