Skip to content

Commit

Permalink
Merge pull request #1432 from marci4/1.5.7_release
Browse files Browse the repository at this point in the history
  • Loading branch information
marci4 committed Jul 8, 2024
2 parents cd08f83 + dd07648 commit d866754
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 5 deletions.
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,23 @@
# Change log

###############################################################################
## Version Release 1.5.7 (2024/07/08)

#### Breaking Changes

* [PR 1399](https://github.com/TooTallNate/Java-WebSocket/pull/1399) - Have connectBlocking clean up after a timeout

#### Bugs Fixed

* [PR 1419](https://github.com/TooTallNate/Java-WebSocket/pull/1419) - Fix issue #1418: WebSocketServer sometimes misses GET request after SSL handshake

#### New Features

* [PR 1407](https://github.com/TooTallNate/Java-WebSocket/pull/1407) - Allow setting custom TCP receive buffer size
* [PR 1399](https://github.com/TooTallNate/Java-WebSocket/pull/1399) - Have connectBlocking clean up after a timeout

In this release 0 issues and 4 pull requests were closed.

###############################################################################
## Version Release 1.5.6 (2024/02/06)

Expand Down
6 changes: 3 additions & 3 deletions README.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ To use maven add this dependency to your pom.xml:
<dependency>
<groupId>org.java-websocket</groupId>
<artifactId>Java-WebSocket</artifactId>
<version>1.5.6</version>
<version>1.5.7</version>
</dependency>
```

Expand All @@ -41,11 +41,11 @@ mavenCentral()
```
Then you can just add the latest version to your build.
```xml
compile "org.java-websocket:Java-WebSocket:1.5.6"
compile "org.java-websocket:Java-WebSocket:1.5.7"
```
Or this option if you use gradle 7.0 and above.
```xml
implementation 'org.java-websocket:Java-WebSocket:1.5.6'
implementation 'org.java-websocket:Java-WebSocket:1.5.7'
```

#### Logging
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ repositories {
}

group = 'org.java-websocket'
version = '1.5.7-SNAPSHOT'
version = '1.5.7'
sourceCompatibility = 1.7
targetCompatibility = 1.7

Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<groupId>org.java-websocket</groupId>
<artifactId>Java-WebSocket</artifactId>
<packaging>jar</packaging>
<version>1.5.7-SNAPSHOT</version>
<version>1.5.7</version>
<name>Java-WebSocket</name>
<description>A barebones WebSocket client and server implementation written 100% in Java</description>
<url>https://github.com/TooTallNate/Java-WebSocket</url>
Expand Down

0 comments on commit d866754

Please sign in to comment.