Skip to content

Commit 7f06446

Browse files
committed
Changed version to 3.0.0
1 parent d99982c commit 7f06446

5 files changed

Lines changed: 9 additions & 7 deletions

File tree

README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33

44
This is the Socket.IO Server Library for Java ported from the [JavaScript server](https://github.com/socketio/socket.io).
55

6+
**NOTE** This library will follow the major version of the JS library starting with version 3.
7+
68
See also: [Socket.IO-client Java](https://github.com/socketio/socket.io-client-java)
79

810
## Features
@@ -22,7 +24,7 @@ Add the following dependency to your `pom.xml`.
2224
<dependency>
2325
<groupId>io.socket</groupId>
2426
<artifactId>socket.io-server</artifactId>
25-
<version>1.0.3</version>
27+
<version>3.0.0</version>
2628
</dependency>
2729
</dependencies>
2830
```
@@ -31,7 +33,7 @@ Add the following dependency to your `pom.xml`.
3133
Add it as a gradle dependency in `build.gradle`.
3234

3335
```groovy
34-
compile ('io.socket:socket.io-server:1.0.3')
36+
compile ('io.socket:socket.io-server:3.0.0')
3537
```
3638

3739
## License

docs/install.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Add the following dependency to your ``pom.xml``.::
1616
<dependency>
1717
<groupId>io.socket</groupId>
1818
<artifactId>socket.io-server</artifactId>
19-
<version>1.0.3</version>
19+
<version>3.0.0</version>
2020
</dependency>
2121
</dependencies>
2222

@@ -25,4 +25,4 @@ Gradle
2525

2626
Add it as a gradle dependency in ``build.gradle``.::
2727

28-
compile ('io.socket:socket.io-server:1.0.3')
28+
compile ('io.socket:socket.io-server:3.0.0')

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>io.socket</groupId>
88
<artifactId>socket.io-server-bom</artifactId>
9-
<version>1.0.3</version>
9+
<version>3.0.0</version>
1010
<packaging>pom</packaging>
1111
<name>socket.io</name>
1212
<description>Socket.IO server library for Java</description>

socket.io-server-test/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>socket.io-server-bom</artifactId>
77
<groupId>io.socket</groupId>
8-
<version>1.0.3</version>
8+
<version>3.0.0</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

socket.io-server/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>socket.io-server-bom</artifactId>
77
<groupId>io.socket</groupId>
8-
<version>1.0.3</version>
8+
<version>3.0.0</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

0 commit comments

Comments
 (0)