* added is_secure method to Request class, ``request.is_secure()`` will return True if using https
0.1.19
...................
* added host_url propety to Request class, ``request.host_url`` will return something like http://0:8080 depending on your url
0.1.18
...................
* fixed bug on tools.py to remove 'log=True' on the response body when raising an exeption and using ``display=True``.
0.1.17
...................
* Added the ``add_header`` method to the response class, with the intention to allow multiple headers with the same name, example 'Set-Cookie'. * Compiling regex using 'r' (raw string notation). * Improved logs order and removed 'get' to use 'in' instead.
0.1.16
...................
* fixed bug on py_mod to allow sub modules based on the URI to work properly, see `URI_module </en/latest/resource/URI_module.html>`_ * fixed __init__ to make custom versions match allowed_URI_chars ``^[\w-]+$`` * changed UUID4 to UUID1
0.1.15
...................
* log when trying to load the _catchall, if no _catchall raise Exception about the missing module * replaced iteritems with items() to be Python 3 compatible