diff options
author | Dominik Picheta <dominikpicheta@gmail.com> | 2016-09-25 00:39:57 +0200 |
---|---|---|
committer | Dominik Picheta <dominikpicheta@gmail.com> | 2016-09-25 00:39:57 +0200 |
commit | 26c7a76c8a42b611b0e222652c73ebeddb007f82 (patch) | |
tree | d32a257596164c02ee5a501db9d48fb6779df8d0 /web/news | |
parent | 6a83bc1ff57807f2bc6676da545dee79876ffb75 (diff) | |
download | Nim-26c7a76c8a42b611b0e222652c73ebeddb007f82.tar.gz |
asynchttpserver's Response object's req method uses HttpMethod now.
Fixes #4423.
Diffstat (limited to 'web/news')
-rw-r--r-- | web/news/version_0_15_released.rst | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/web/news/version_0_15_released.rst b/web/news/version_0_15_released.rst index d4a37dab9..a5d2e77bd 100644 --- a/web/news/version_0_15_released.rst +++ b/web/news/version_0_15_released.rst @@ -69,6 +69,11 @@ that have tuple name: value no longer requires this value to be prefixed with ``"http"`` (or similar). +- Converting a ``HttpMethod`` value to string using the ``$`` operator will + give string values without the ``"Http"`` prefix now. + +- The ``Request`` object defined in the ``asynchttpserver`` module now uses + the ``HttpMethod`` type for the request method. Library Additions ----------------- |