Skip to content

Commit 12684ff

Browse files
authored
Merge pull request #636 from marci4/master
Update to 1.3.7
2 parents 09c568c + 945bfd0 commit 12684ff

File tree

4 files changed

+7
-5
lines changed

4 files changed

+7
-5
lines changed

README.markdown

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ To use maven add this dependency to your pom.xml:
3535
<dependency>
3636
<groupId>org.java-websocket</groupId>
3737
<artifactId>Java-WebSocket</artifactId>
38-
<version>1.3.6</version>
38+
<version>1.3.7</version>
3939
</dependency>
4040
```
4141

@@ -46,7 +46,7 @@ mavenCentral()
4646
```
4747
Then you can just add the latest version to your build.
4848
```xml
49-
compile "org.java-websocket:Java-WebSocket:1.3.6"
49+
compile "org.java-websocket:Java-WebSocket:1.3.7"
5050
```
5151

5252
Running the Examples

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ repositories {
99
}
1010

1111
group = 'org.java_websocket'
12-
version = '1.3.6'
12+
version = '1.3.7'
1313
sourceCompatibility = 1.6
1414
targetCompatibility = 1.6
1515

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<groupId>org.java-websocket</groupId>
44
<artifactId>Java-WebSocket</artifactId>
55
<packaging>jar</packaging>
6-
<version>1.3.7-dev</version>
6+
<version>1.3.8-dev</version>
77
<name>Java-WebSocket</name>
88
<description>A barebones WebSocket client and server implementation written 100% in Java</description>
99
<url>https://github.com/TooTallNate/Java-WebSocket</url>

src/main/java/org/java_websocket/WebSocket.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -226,13 +226,15 @@ enum READYSTATE {
226226
* The attachment may be of any type.
227227
*
228228
* @param attachment The object to be attached to the user
229+
* @param <T> The type of the attachment
229230
* @since 1.3.7
230231
**/
231232
<T> void setAttachment(T attachment);
232233

233234
/**
234235
* Getter for the connection attachment.
235-
*
236+
*
237+
* @param <T> The type of the attachment
236238
* @return Returns the user attachment
237239
* @since 1.3.7
238240
**/

0 commit comments

Comments
 (0)