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