Skip to content

Commit

Permalink
next development iteration
Browse files Browse the repository at this point in the history
  • Loading branch information
mostroverkhov committed Jul 25, 2024
1 parent 870618f commit 4951ecd
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ EchoWebSocketHandler http1WebSocketHandler = new EchoWebSocketHandler();
Http2WebSocketClientHandshaker handShaker = Http2WebSocketClientHandshaker.create(channel);
Http2Headers headers =
new DefaultHttp2Headers().set("user-agent", "jauntsdn-websocket-http2-client/1.2.6");
new DefaultHttp2Headers().set("user-agent", "jauntsdn-websocket-http2-client/1.3.0");
ChannelFuture handshakeFuture =
/*http1 websocket handler*/
handShaker.handshake("/echo", headers, new EchoWebSocketHandler());
Expand Down Expand Up @@ -326,7 +326,7 @@ repositories {
}
dependencies {
implementation 'com.jauntsdn.netty:netty-websocket-http2:1.2.6'
implementation 'com.jauntsdn.netty:netty-websocket-http2:1.3.0'
}
```

Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
group=com.jauntsdn.netty
version=1.3.0
version=1.3.1

googleJavaFormatPluginVersion=0.9
dependencyManagementPluginVersion=1.1.0
Expand Down
2 changes: 1 addition & 1 deletion gradle/publishing.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -105,5 +105,5 @@ def isRelease(Project project) {
}

def releaseModules() {
return ["netty-websocket-http2", "netty-websocket-http2-callbacks-codec"]
return ["netty-websocket-http2", "netty-websocket-http2-callbacks-codec", "netty-websocket-multiprotocol"]
}

0 comments on commit 4951ecd

Please sign in to comment.