prepare 0.8.0

This commit is contained in:
nkzawa
2016-09-19 16:22:39 +02:00
parent 4b2df0d045
commit 08642a7873
3 changed files with 19 additions and 3 deletions

View File

@@ -1,3 +1,19 @@
0.8.0 / 2016-09-19
==================
* update okhttp-ws [VicV]
* proxy support [Eugene-Kudelevsky]
* several code improvements [georgekankava]
* EventThread: log exceptions [Dominik Auf der Maur]
* EventThread: extend deamon property from parent thread [vach]
* Yeast: fix infinite loop bug [erikogenvik]
* WebSocket: close the web socket after sending a close frame [dave-r12]
* WebSocket: fix "must call close()" crash [chendrak]
* Polling: disconnect after closing stream/reader [wzurita]
* UTF8Exception: remove the data property
* test: use TLSv1
0.7.0 / 2016-02-01 0.7.0 / 2016-02-01
================== ==================

View File

@@ -16,7 +16,7 @@ Add the following dependency to your `pom.xml`.
<dependency> <dependency>
<groupId>io.socket</groupId> <groupId>io.socket</groupId>
<artifactId>engine.io-client</artifactId> <artifactId>engine.io-client</artifactId>
<version>0.7.0</version> <version>0.8.0</version>
</dependency> </dependency>
</dependencies> </dependencies>
``` ```
@@ -25,7 +25,7 @@ Add the following dependency to your `pom.xml`.
Add it as a gradle dependency for Android Studio, in `build.gradle`: Add it as a gradle dependency for Android Studio, in `build.gradle`:
```groovy ```groovy
compile ('io.socket:engine.io-client:0.7.0') { compile ('io.socket:engine.io-client:0.8.0') {
// excluding org.json which is provided by Android // excluding org.json which is provided by Android
exclude group: 'org.json', module: 'json' exclude group: 'org.json', module: 'json'
} }

View File

@@ -2,7 +2,7 @@
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<groupId>io.socket</groupId> <groupId>io.socket</groupId>
<artifactId>engine.io-client</artifactId> <artifactId>engine.io-client</artifactId>
<version>0.7.1-SNAPSHOT</version> <version>0.8.0-SNAPSHOT</version>
<packaging>jar</packaging> <packaging>jar</packaging>
<name>engine.io-client</name> <name>engine.io-client</name>
<description>Engine.IO Client Library for Java</description> <description>Engine.IO Client Library for Java</description>