Skip to content

Commit

Permalink
Bump netty-handler version (#246)
Browse files Browse the repository at this point in the history
* Bump version: v4.13.0 → v4.13.1

* Bumped dependency versions
  • Loading branch information
SMadani authored Oct 27, 2023
1 parent 379a71e commit d9b15ac
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[bumpversion]
commit = True
tag = False
current_version = v4.13.0
current_version = v4.13.1
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\-(?P<release>[a-z]+)(?P<build>\d+))?
serialize =
{major}.{minor}.{patch}-{release}{build}
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ When you use Maven as your build tool, you can manage dependencies in the `pom.x
<dependency>
<groupId>com.tokbox</groupId>
<artifactId>opentok-server-sdk</artifactId>
<version>4.13.0</version>
<version>4.13.1</version>
</dependency>
```

Expand All @@ -44,7 +44,7 @@ When you use Gradle as your build tool, you can manage dependencies in the `buil

```groovy
dependencies {
compile group: 'com.tokbox', name: 'opentok-server-sdk', version: '4.13.0'
compile group: 'com.tokbox', name: 'opentok-server-sdk', version: '4.13.1'
}
```

Expand Down
8 changes: 4 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ plugins {

group = 'com.tokbox'
archivesBaseName = 'opentok-server-sdk'
version = '4.13.0'
version = '4.13.1'
sourceCompatibility = "1.8"
targetCompatibility = "1.8"

Expand All @@ -30,10 +30,10 @@ dependencies {

implementation 'commons-lang:commons-lang:2.6'
implementation 'commons-codec:commons-codec:1.16.0'
implementation 'io.netty:netty-codec-http:4.1.96.Final'
implementation 'io.netty:netty-handler:4.1.96.Final'
implementation 'io.netty:netty-codec-http:4.1.100.Final'
implementation 'io.netty:netty-handler:4.1.100.Final'
implementation 'org.asynchttpclient:async-http-client:2.12.3'
implementation 'com.fasterxml.jackson.core:jackson-databind:2.15.2'
implementation 'com.fasterxml.jackson.core:jackson-databind:2.15.3'
implementation 'org.bitbucket.b_c:jose4j:0.9.3'
}

Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/opentok/constants/Version.java
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@
package com.opentok.constants;

public class Version {
public static final String VERSION = "4.13.0";
public static final String VERSION = "4.13.1";
}

0 comments on commit d9b15ac

Please sign in to comment.