This commit is contained in:
Naoyuki Kanezawa
2015-05-03 02:12:15 +09:00
parent e317dd0cf3
commit 91d943de18
3 changed files with 11 additions and 3 deletions

View File

@@ -1,3 +1,11 @@
0.5.0 / 2015-05-02
==================
* bump `engine.io-client`.
* enhance parser decode [niqo01]
* add a wrong event name check
* add setDefaultHostnameVerifier method
0.4.2 / 2015-03-07 0.4.2 / 2015-03-07
================== ==================

View File

@@ -19,7 +19,7 @@ Add the following dependency to your `pom.xml`.
<dependency> <dependency>
<groupId>com.github.nkzawa</groupId> <groupId>com.github.nkzawa</groupId>
<artifactId>socket.io-client</artifactId> <artifactId>socket.io-client</artifactId>
<version>0.4.2</version> <version>0.5.0</version>
</dependency> </dependency>
</dependencies> </dependencies>
``` ```
@@ -28,7 +28,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 'com.github.nkzawa:socket.io-client:0.4.2' compile 'com.github.nkzawa:socket.io-client:0.5.0'
``` ```
## Usage ## Usage

View File

@@ -2,7 +2,7 @@
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<groupId>com.github.nkzawa</groupId> <groupId>com.github.nkzawa</groupId>
<artifactId>socket.io-client</artifactId> <artifactId>socket.io-client</artifactId>
<version>0.4.3-SNAPSHOT</version> <version>0.5.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>