Skip to content

Commit e6b3264

Browse files
committed
bump to 1.15.2
1 parent e8bbfc8 commit e6b3264

File tree

6 files changed

+21
-7
lines changed

6 files changed

+21
-7
lines changed

NEWS.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,19 @@
11
# NEWS
22

3+
1.15.2 - 2019-09-25
4+
-------------------
5+
6+
- doc: fix tes run example in readme
7+
- fix: hackney stream, send `hackney_response` before calling `handle_error`
8+
- fix: error remove ssl `honor_cipher_order` option
9+
- doc: document self-signed certificate usage
10+
- bump `ssl_verify_fun` to 1.1.5
11+
- fix: don't use default pool if set to false
12+
- fix: `hackney_headers_new:store/3` fix value appending to a list
13+
- fix: miscellaeous specs
14+
- doc: miscellaneous improvements
15+
16+
317
1.15.1 - 2019-02-26
418
-------------------
519

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

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

7-
__Version:__ 1.15.1
7+
__Version:__ 1.15.2
88

99
# hackney
1010

@@ -566,7 +566,7 @@ Running the tests:
566566

567567
```
568568
$ gunicorn --daemon --pid httpbin.pid httpbin:app
569-
$ make test
569+
$ rebar3 eunit
570570
$ kill `cat httpbin.pid`
571571
```
572572

doc/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

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

7-
__Version:__ 1.15.1
7+
__Version:__ 1.15.2
88

99
# hackney
1010

@@ -566,7 +566,7 @@ Running the tests:
566566

567567
```
568568
$ gunicorn --daemon --pid httpbin.pid httpbin:app
569-
$ make test
569+
$ rebar3 eunit
570570
$ kill `cat httpbin.pid`
571571
```
572572

doc/hackney_ssl.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ __See also:__ [ssl:setopts/2](ssl.md#setopts-2).
125125
### shutdown/2 ###
126126

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

doc/overview.edoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818

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

2323
@doc

src/hackney.app.src

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
{application, hackney,
55
[
66
{description, "simple HTTP client"},
7-
{vsn, "1.15.1"},
7+
{vsn, "1.15.2"},
88
{registered, [hackney_pool]},
99
{applications, [kernel,
1010
stdlib,

0 commit comments

Comments
 (0)