Skip to content

Commit

Permalink
Merge pull request #200 from opentok/4.4.1-release
Browse files Browse the repository at this point in the history
Bumped version and made bumping more robust
  • Loading branch information
dragonmantank authored Feb 9, 2021
2 parents 3ab5b9a + d893087 commit fd24091
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
2 changes: 0 additions & 2 deletions .bumpversion.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,4 @@ serialize =

[bumpversion:file:build.gradle]

[bumpversion:file:README.md]

[bumpversion:file:src/main/java/com/opentok/constants/Version.java]
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,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.4.0</version>
<version>[4.4.1,5.0)</version>
</dependency>
```

Expand All @@ -41,7 +41,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.4.0'
compile group: 'com.tokbox', name: 'opentok-server-sdk', version: '[4.4.1,5.0)'
}
```

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

0 comments on commit fd24091

Please sign in to comment.