prepare v0.8.0

This commit is contained in:
nkzawa
2016-09-23 18:56:32 +09:00
parent b08aa7d19f
commit 7bd2764c76
3 changed files with 14 additions and 6 deletions

View File

@@ -1,3 +1,11 @@
0.8.0 / 2016-09-23
==================
* bump `engine.io-client`
* README: fix typos [kylestev, lu-zero]
* test: use TLSv1
0.7.0 / 2016-02-01 0.7.0 / 2016-02-01
================== ==================

View File

@@ -21,7 +21,7 @@ Add the following dependency to your `pom.xml`.
<dependency> <dependency>
<groupId>io.socket</groupId> <groupId>io.socket</groupId>
<artifactId>socket.io-client</artifactId> <artifactId>socket.io-client</artifactId>
<version>0.7.0</version> <version>0.8.0</version>
</dependency> </dependency>
</dependencies> </dependencies>
``` ```
@@ -30,7 +30,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:socket.io-client:0.7.0') { compile ('io.socket:socket.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>socket.io-client</artifactId> <artifactId>socket.io-client</artifactId>
<version>0.7.1-SNAPSHOT</version> <version>0.8.0-SNAPSHOT</version>
<packaging>jar</packaging> <packaging>jar</packaging>
<name>socket.io-client</name> <name>socket.io-client</name>
<description>Socket.IO Client Library for Java</description> <description>Socket.IO Client Library for Java</description>
@@ -28,8 +28,8 @@
<scm> <scm>
<url>https://github.com/socketio/socket.io-client-java</url> <url>https://github.com/socketio/socket.io-client-java</url>
<connection>scm:git:git://github.com/socketio/socket.io-client-java.git</connection> <connection>scm:git:https://github.com/socketio/socket.io-client-java.git</connection>
<developerConnection>scm:git:git@github.com:socketio/socket.io-client-java.git</developerConnection> <developerConnection>scm:git:https://github.com/socketio/socket.io-client-java.git</developerConnection>
<tag>HEAD</tag> <tag>HEAD</tag>
</scm> </scm>
@@ -62,7 +62,7 @@
<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>
<dependency> <dependency>
<groupId>org.json</groupId> <groupId>org.json</groupId>