diff --git a/CHANGELOG.md b/CHANGELOG.md index 24f34a1..8fe48ff 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Jetforce Changelog -### v0.6.0 (Unreleased) +### v0.6.0 (2020-07-30) #### Bugfixes @@ -8,16 +8,17 @@ "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 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 - 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 the specified rate will receive a 44 SLOW DOWN error response. -- Server access logs are now redirected to ``stdout`` instead of ``stderr``. - This is intended to make it easier to use a log manager tool to split them - out from other server messages like startup information and error tracebacks. -- File chunking has been optimized for streaming large static files. +- Server access logs are now directed to ``stdout`` instead of ``stderr``. + Error traceback and other messages will still be directed to ``stderr``. +- File chunking size has been optimized for streaming large static files. #### Examples diff --git a/jetforce/__version__.py b/jetforce/__version__.py index 3d18726..906d362 100644 --- a/jetforce/__version__.py +++ b/jetforce/__version__.py @@ -1 +1 @@ -__version__ = "0.5.0" +__version__ = "0.6.0" diff --git a/setup.py b/setup.py index b98ac8a..d0c333f 100644 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ def long_description(): setuptools.setup( name="Jetforce", - version="0.5.0", + version="0.6.0", url="https://github.com/michael-lazar/jetforce", license="Other/Proprietary License", author="Michael Lazar",