Skip to content

Commit d9b15ac

Browse files
authored
Bump netty-handler version (#246)
* Bump version: v4.13.0 → v4.13.1 * Bumped dependency versions
1 parent 379a71e commit d9b15ac

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[bumpversion]
22
commit = True
33
tag = False
4-
current_version = v4.13.0
4+
current_version = v4.13.1
55
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\-(?P<release>[a-z]+)(?P<build>\d+))?
66
serialize =
77
{major}.{minor}.{patch}-{release}{build}

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ When you use Maven as your build tool, you can manage dependencies in the `pom.x
3434
<dependency>
3535
<groupId>com.tokbox</groupId>
3636
<artifactId>opentok-server-sdk</artifactId>
37-
<version>4.13.0</version>
37+
<version>4.13.1</version>
3838
</dependency>
3939
```
4040

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

4545
```groovy
4646
dependencies {
47-
compile group: 'com.tokbox', name: 'opentok-server-sdk', version: '4.13.0'
47+
compile group: 'com.tokbox', name: 'opentok-server-sdk', version: '4.13.1'
4848
}
4949
```
5050

build.gradle

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ plugins {
1111

1212
group = 'com.tokbox'
1313
archivesBaseName = 'opentok-server-sdk'
14-
version = '4.13.0'
14+
version = '4.13.1'
1515
sourceCompatibility = "1.8"
1616
targetCompatibility = "1.8"
1717

@@ -30,10 +30,10 @@ dependencies {
3030

3131
implementation 'commons-lang:commons-lang:2.6'
3232
implementation 'commons-codec:commons-codec:1.16.0'
33-
implementation 'io.netty:netty-codec-http:4.1.96.Final'
34-
implementation 'io.netty:netty-handler:4.1.96.Final'
33+
implementation 'io.netty:netty-codec-http:4.1.100.Final'
34+
implementation 'io.netty:netty-handler:4.1.100.Final'
3535
implementation 'org.asynchttpclient:async-http-client:2.12.3'
36-
implementation 'com.fasterxml.jackson.core:jackson-databind:2.15.2'
36+
implementation 'com.fasterxml.jackson.core:jackson-databind:2.15.3'
3737
implementation 'org.bitbucket.b_c:jose4j:0.9.3'
3838
}
3939

src/main/java/com/opentok/constants/Version.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,5 @@
88
package com.opentok.constants;
99

1010
public class Version {
11-
public static final String VERSION = "4.13.0";
11+
public static final String VERSION = "4.13.1";
1212
}

0 commit comments

Comments
 (0)