Skip to content

Commit da80455

Browse files
authored
Merge pull request #193 from opentok/bump-v4.4.0
Bumped version to v4.4.0
2 parents ee13ef2 + b19f302 commit da80455

File tree

5 files changed

+18
-4
lines changed

5 files changed

+18
-4
lines changed

.bumpversion.cfg

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
[bumpversion]
2+
commit = True
3+
tag = True
4+
current_version = 4.4.0
5+
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\-(?P<release>[a-z]+))?
6+
serialize =
7+
{major}.{minor}.{patch}
8+
9+
[bumpversion:file:build.gradle]
10+
11+
[bumpversion:file:README.md]
12+
13+
[bumpversion:file:src/main/java/com/opentok/constants/Version.java]

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,3 +25,4 @@ bin
2525
.project
2626

2727
/secret.sh
28+
**/.DS_Store

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ When you use Maven as your build tool, you can manage dependencies in the `pom.x
3131
<dependency>
3232
<groupId>com.tokbox</groupId>
3333
<artifactId>opentok-server-sdk</artifactId>
34-
<version>4.3.2</version>
34+
<version>4.4.0</version>
3535
</dependency>
3636
```
3737

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

4242
```groovy
4343
dependencies {
44-
compile group: 'com.tokbox', name: 'opentok-server-sdk', version: '4.3.2'
44+
compile group: 'com.tokbox', name: 'opentok-server-sdk', version: '4.4.0'
4545
}
4646
```
4747

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ apply plugin: 'jacoco'
1212

1313
group = 'com.tokbox'
1414
archivesBaseName = 'opentok-server-sdk'
15-
version = '4.3.2'
15+
version = '4.4.0'
1616

1717
task javadocJar(type: Jar) {
1818
classifier = 'javadoc'

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.3.2";
11+
public static final String VERSION = "4.4.0";
1212
}

0 commit comments

Comments
 (0)