diff --git a/NEWS.md b/NEWS.md index 36af5ab6..b63be676 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,5 +1,19 @@ # NEWS +1.15.2 - 2019-09-25 +------------------- + +- doc: fix tes run example in readme +- fix: hackney stream, send `hackney_response` before calling `handle_error` +- fix: error remove ssl `honor_cipher_order` option +- doc: document self-signed certificate usage +- bump `ssl_verify_fun` to 1.1.5 +- fix: don't use default pool if set to false +- fix: `hackney_headers_new:store/3` fix value appending to a list +- fix: miscellaeous specs +- doc: miscellaneous improvements + + 1.15.1 - 2019-02-26 ------------------- diff --git a/README.md b/README.md index ed465f87..bfd00c4e 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ Copyright (c) 2012-2019 Benoît Chesneau. -__Version:__ 1.15.1 +__Version:__ 1.15.2 # hackney @@ -566,7 +566,7 @@ Running the tests: ``` $ gunicorn --daemon --pid httpbin.pid httpbin:app -$ make test +$ rebar3 eunit $ kill `cat httpbin.pid` ``` diff --git a/doc/README.md b/doc/README.md index fecd42e6..85ee356c 100644 --- a/doc/README.md +++ b/doc/README.md @@ -4,7 +4,7 @@ Copyright (c) 2012-2019 Benoît Chesneau. -__Version:__ 1.15.1 +__Version:__ 1.15.2 # hackney @@ -566,7 +566,7 @@ Running the tests: ``` $ gunicorn --daemon --pid httpbin.pid httpbin:app -$ make test +$ rebar3 eunit $ kill `cat httpbin.pid` ``` diff --git a/doc/hackney_ssl.md b/doc/hackney_ssl.md index 15a29279..7a46cca9 100644 --- a/doc/hackney_ssl.md +++ b/doc/hackney_ssl.md @@ -125,7 +125,7 @@ __See also:__ [ssl:setopts/2](ssl.md#setopts-2). ### shutdown/2 ###
-shutdown(Socket::ssl:socket(), How::read | write | read_write) -> ok
+shutdown(Socket::ssl:sslsocket(), How::read | write | read_write) -> ok | {error, any()}