Skip to content

Commit d893087

Browse files
committed
Bumped version and made bumping more robust
1 parent 3ab5b9a commit d893087

File tree

3 files changed

+3
-5
lines changed

3 files changed

+3
-5
lines changed

.bumpversion.cfg

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,4 @@ serialize =
88

99
[bumpversion:file:build.gradle]
1010

11-
[bumpversion:file:README.md]
12-
1311
[bumpversion:file:src/main/java/com/opentok/constants/Version.java]

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.4.0</version>
34+
<version>[4.4.1,5.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.4.0'
44+
compile group: 'com.tokbox', name: 'opentok-server-sdk', version: '[4.4.1,5.0)'
4545
}
4646
```
4747

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

0 commit comments

Comments
 (0)