Skip to content

Commit

Permalink
bump to 0.9.1
Browse files Browse the repository at this point in the history
  • Loading branch information
benoitc committed Dec 20, 2013
1 parent 37ee8bd commit 911426c
Show file tree
Hide file tree
Showing 6 changed files with 29 additions and 9 deletions.
5 changes: 5 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# NEWS

0.9.1 - 2013/12/20
------------------

- fix response multipart processing

0.9.0 - 2013/12/19
------------------

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

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

__Version:__ 0.9.0
__Version:__ 0.9.1

# hackney

Expand All @@ -27,7 +27,12 @@ Main features:
- Optional socket pool
- REST syntax: `hackney:Method(URL)` (where a method can be get, post, put, delete, ...)

Note: This is a work in progress, see the
Hackney use [hackney_lib](http://github.com/benoitc/hackney_lib) to
handle any web protocols. If you want to manipulate headers, cookies,
multipart or any other thing related to web protocols this is the place
to go.

> Note: This is a work in progress, see the
[TODO](http://github.com/benoitc/hackney/blob/master/TODO.md) for more
informations on what still need to be done.

Expand Down
9 changes: 7 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-2013 Benoît Chesneau.

__Version:__ 0.9.0
__Version:__ 0.9.1

# hackney

Expand All @@ -27,7 +27,12 @@ Main features:
- Optional socket pool
- REST syntax: `hackney:Method(URL)` (where a method can be get, post, put, delete, ...)

Note: This is a work in progress, see the
Hackney use [hackney_lib](http://github.com/benoitc/hackney_lib) to
handle any web protocols. If you want to manipulate headers, cookies,
multipart or any other thing related to web protocols this is the place
to go.

> Note: This is a work in progress, see the
[TODO](http://github.com/benoitc/hackney/blob/master/TODO.md) for more
informations on what still need to be done.

Expand Down
9 changes: 7 additions & 2 deletions doc/overview.edoc
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@


@copyright 2012-2013 Benoît Chesneau.
@version 0.9.0
@version 0.9.1
@title hackney - HTTP client library in Erlang

@doc
Expand All @@ -42,8 +42,13 @@ Main features:
- Optional socket pool
- REST syntax: `hackney:Method(URL)' (where a method can be get, post, put, delete, ...)

Hackney use [hackney_lib](http://github.com/benoitc/hackney_lib) to
handle any web protocols. If you want to manipulate headers, cookies,
multipart or any other thing related to web protocols this is the place
to go.

Note: This is a work in progress, see the

> Note: This is a work in progress, see the
[TODO](http://github.com/benoitc/hackney/blob/master/TODO.md) for more
informations on what still need to be done.

Expand Down
4 changes: 2 additions & 2 deletions package.exs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Expm.Package.new(name: "hackney", description: "Simple HTTP client in Erlang",
version: "0.9.0", keywords: ["http","client","binary"],
version: "0.9.1", keywords: ["http","client","binary"],
dependencies: ["mimetypes", "hackney_lib"],
licenses: [[name: "Apache License, Version 2.0", file: "LICENSE"]],
contributors: [[name: "Adam Rutkowski",
Expand Down Expand Up @@ -63,5 +63,5 @@ Expm.Package.new(name: "hackney", description: "Simple HTTP client in Erlang",
email: "rj@metabrew.com"]],
maintainers: [[name: "Benoit Chesneau",
email: "bchesneau@gmail.com"]],
repositories: [[github: "benoitc/hackney", tag: "0.9.0"]])
repositories: [[github: "benoitc/hackney", tag: "0.9.1"]])

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, "0.9.0"},
{vsn, "0.9.1"},
{registered, [hackney_pool]},
{applications, [kernel,
stdlib,
Expand Down

0 comments on commit 911426c

Please sign in to comment.