Skip to content

Commit 5b5515f

Browse files
committed
bump to 0.11.2
1 parent 4dae3f8 commit 5b5515f

File tree

4 files changed

+17
-6
lines changed

4 files changed

+17
-6
lines changed

NEWS.md

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,25 @@
11
# NEWS
22

3-
0.11.1 - 2013/03/03
3+
0.11.2 - 2014/04/15
4+
-------------------
5+
6+
- new improved and more performant IDNA support
7+
- make sure the socket is closed when we skip the body if needed
8+
- fix multipart EOF parsing
9+
- make sure we finish a multipart stream
10+
- bump hackney_lib to 0.2.5
11+
- enable TCP_NODELAY by default. (To disable, pass the option
12+
`{nodelay, false} to `connect_options`.
13+
14+
0.11.1 - 2014/03/03
415
-------------------
516

617
- improvement: speed IDNA domains handing
718
- fix http proxy via CONNECT
819
- fix: encode the path
920
- bump to [hackney_lib 0.2.4](https://github.com/benoitc/hackney_lib/releases/tag/0.2.4)
1021

11-
0.11.0 - 2013/03/02
22+
0.11.0 - 2014/03/02
1223
-------------------
1324

1425
- add `hackney:location/1` to get the final location

doc/overview.edoc

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

1717

1818
@copyright 2012-2014 Benoît Chesneau.
19-
@version 0.11.1
19+
@version 0.11.2
2020
@title hackney - HTTP client library in Erlang
2121

2222
@doc

package.exs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Expm.Package.new(name: "hackney", description: "Simple HTTP client in Erlang",
2-
version: "0.11.1", keywords: ["http","client","binary"],
2+
version: "0.11.2", keywords: ["http","client","binary"],
33
dependencies: ["mimetypes", "hackney_lib"],
44
licenses: [[name: "Apache License, Version 2.0", file: "LICENSE"]],
55
contributors: [[name: "Adam Rutkowski",
@@ -63,4 +63,4 @@ Expm.Package.new(name: "hackney", description: "Simple HTTP client in Erlang",
6363
email: "[email protected]"]],
6464
maintainers: [[name: "Benoit Chesneau",
6565
email: "[email protected]"]],
66-
repositories: [[github: "benoitc/hackney", tag: "0.11.1"]])
66+
repositories: [[github: "benoitc/hackney", tag: "0.11.2"]])

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, "0.11.1"},
7+
{vsn, "0.11.2"},
88
{registered, [hackney_pool]},
99
{applications, [kernel,
1010
stdlib,

0 commit comments

Comments
 (0)