Skip to content

Commit

Permalink
bump to 1.15.2
Browse files Browse the repository at this point in the history
  • Loading branch information
benoitc committed Sep 25, 2019
1 parent e8bbfc8 commit e6b3264
Show file tree
Hide file tree
Showing 6 changed files with 21 additions and 7 deletions.
14 changes: 14 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -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
-------------------

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

Copyright (c) 2012-2019 Benoît Chesneau.

__Version:__ 1.15.1
__Version:__ 1.15.2

# hackney

Expand Down Expand Up @@ -566,7 +566,7 @@ Running the tests:

```
$ gunicorn --daemon --pid httpbin.pid httpbin:app
$ make test
$ rebar3 eunit
$ kill `cat httpbin.pid`
```

Expand Down
4 changes: 2 additions & 2 deletions doc/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

Copyright (c) 2012-2019 Benoît Chesneau.

__Version:__ 1.15.1
__Version:__ 1.15.2

# hackney

Expand Down Expand Up @@ -566,7 +566,7 @@ Running the tests:

```
$ gunicorn --daemon --pid httpbin.pid httpbin:app
$ make test
$ rebar3 eunit
$ kill `cat httpbin.pid`
```

Expand Down
2 changes: 1 addition & 1 deletion doc/hackney_ssl.md
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ __See also:__ [ssl:setopts/2](ssl.md#setopts-2).
### shutdown/2 ###

<pre><code>
shutdown(Socket::<a href="ssl.md#type-socket">ssl:socket()</a>, How::read | write | read_write) -&gt; ok
shutdown(Socket::<a href="ssl.md#type-sslsocket">ssl:sslsocket()</a>, How::read | write | read_write) -&gt; ok | {error, any()}
</code></pre>
<br />

Expand Down
2 changes: 1 addition & 1 deletion doc/overview.edoc
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@


@copyright 2012-2019 Benoît Chesneau.
@version 1.15.1
@version 1.15.2
@title hackney - HTTP client library in Erlang

@doc
Expand Down
2 changes: 1 addition & 1 deletion src/hackney.app.src
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
{application, hackney,
[
{description, "simple HTTP client"},
{vsn, "1.15.1"},
{vsn, "1.15.2"},
{registered, [hackney_pool]},
{applications, [kernel,
stdlib,
Expand Down

0 comments on commit e6b3264

Please sign in to comment.