Bumping version

This commit is contained in:
Michael Lazar 2020-07-30 21:24:07 -04:00
parent 7701acd995
commit 1c0508d127
3 changed files with 8 additions and 7 deletions

View File

@ -1,6 +1,6 @@
# Jetforce Changelog # Jetforce Changelog
### v0.6.0 (Unreleased) ### v0.6.0 (2020-07-30)
#### Bugfixes #### Bugfixes
@ -8,16 +8,17 @@
"application/octet-stream" instead of "text/plain". The expectation is that "application/octet-stream" instead of "text/plain". The expectation is that
it would be safer for a client to download an unknown file rather than it would be safer for a client to download an unknown file rather than
attempting to display it inline as text. attempting to display it inline as text.
- Fixed a bug that prevented loading the default mimetype definitions from
/etc/mime.types and other system-level files.
#### Features #### Features
- The static file server now has a ``--rate-limit`` flag that can be used - The static file server now has a ``--rate-limit`` flag that can be used
to define per-IP address rate limiting for requests. Requests that exceed to define per-IP address rate limiting for requests. Requests that exceed
the specified rate will receive a 44 SLOW DOWN error response. the specified rate will receive a 44 SLOW DOWN error response.
- Server access logs are now redirected to ``stdout`` instead of ``stderr``. - Server access logs are now directed to ``stdout`` instead of ``stderr``.
This is intended to make it easier to use a log manager tool to split them Error traceback and other messages will still be directed to ``stderr``.
out from other server messages like startup information and error tracebacks. - File chunking size has been optimized for streaming large static files.
- File chunking has been optimized for streaming large static files.
#### Examples #### Examples

View File

@ -1 +1 @@
__version__ = "0.5.0" __version__ = "0.6.0"

View File

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