From 641e34d3e5f1c5c9f7da30b330042a38b095196f Mon Sep 17 00:00:00 2001 From: nkzawa Date: Mon, 1 Feb 2016 18:03:59 +0900 Subject: [PATCH] update README and History for the next release --- History.md | 11 +++++++++++ README.md | 4 ++-- pom.xml | 2 +- 3 files changed, 14 insertions(+), 3 deletions(-) diff --git a/History.md b/History.md index e3ce846..c8c557b 100644 --- a/History.md +++ b/History.md @@ -1,3 +1,14 @@ +0.7.0 / 2016-02-01 +================== + +* compatible with socket.io 1.4.5 +* bump `engine.io-client` +* fix event type when emitting ack with binary data [cirocosta] +* don't reuse same namespace connections +* fix handling of disconnection while in `opening` state +* add ping and pong events +* improve cleanup on `Manager` + 0.6.3 / 2015-12-23 ================== diff --git a/README.md b/README.md index 21c7279..77888b7 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ Add the following dependency to your `pom.xml`. io.socket socket.io-client - 0.6.3 + 0.7.0 ``` @@ -30,7 +30,7 @@ Add the following dependency to your `pom.xml`. Add it as a gradle dependency for Android Studio, in `build.gradle`: ```groovy -compile ('io.socket:socket.io-client:0.6.3') { +compile ('io.socket:socket.io-client:0.7.0') { // excluding org.json which is provided by Android exclude group: 'org.json', module: 'json' } diff --git a/pom.xml b/pom.xml index f61f527..32165d5 100644 --- a/pom.xml +++ b/pom.xml @@ -62,7 +62,7 @@ io.socket engine.io-client - 0.7.0-SNAPSHOT + 0.7.0 org.json