diff --git a/CHANGELOG b/CHANGELOG index 69e3750..83a0266 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,6 +1,11 @@ CONTRIBUTIONS & CHANGE HISTORY ============================== +28-01-2017 - v4.4 + * Fixes to SOCKS over SSL processing + * Added stream_full_chunks option + * Merged pull requests 145, 151 + 07-06-2016 - v4.3 * Adopted erlang.mk for compiling. I find it easier to understand how 'make' behaves compared to rebar. This repo can still be built diff --git a/CONTRIBUTORS b/CONTRIBUTORS index 0b0f803..e18e829 100644 --- a/CONTRIBUTORS +++ b/CONTRIBUTORS @@ -63,3 +63,5 @@ https://github.com/rflynn https://github.com/Vagabond https://github.com/divolgin https://github.com/vans163 +https://github.com/shakugan +https://github.com/p2k diff --git a/README.md b/README.md index 286f60e..d2d42e7 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ ibrowse is a HTTP client written in erlang. **Comments to:** chandrashekhar.mullaparthi@gmail.com -**Current Version:** 4.3 +**Current Version:** 4.4 **Latest Version:** git://github.com/cmullaparthi/ibrowse.git diff --git a/src/ibrowse.app.src b/src/ibrowse.app.src index 7aaffcb..0e7f458 100644 --- a/src/ibrowse.app.src +++ b/src/ibrowse.app.src @@ -1,6 +1,6 @@ {application, ibrowse, [{description, "Erlang HTTP client application"}, - {vsn, "4.3"}, + {vsn, "4.4"}, {registered, [ibrowse_sup, ibrowse]}, {applications, [kernel,stdlib]}, {env, []},