diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 2123da29..4174789a 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,7 +1,7 @@ [bumpversion] commit = True tag = False -current_version = 4.16.1 +current_version = 4.17.0 parse = (?P\d+)\.(?P\d+)\.(?P\d+)(\-(?P[a-z]+)(?P\d+))? serialize = {major}.{minor}.{patch}-{release}{build} diff --git a/README.md b/README.md index cd7e5d20..5fdfe355 100644 --- a/README.md +++ b/README.md @@ -48,7 +48,7 @@ When you use Maven as your build tool, you can manage dependencies in the `pom.x com.tokbox opentok-server-sdk - 4.16.1 + 4.17.0 ``` @@ -58,7 +58,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.16.1' + compile group: 'com.tokbox', name: 'opentok-server-sdk', version: '4.17.0' } ``` diff --git a/build.gradle b/build.gradle index f0486bd1..a21eec30 100644 --- a/build.gradle +++ b/build.gradle @@ -12,7 +12,7 @@ plugins { group = 'com.tokbox' base.archivesName = 'opentok-server-sdk' -version = '4.16.1' +version = '4.17.0' ext.githubPath = "opentok/Opentok-Java-SDK" diff --git a/src/main/java/com/opentok/constants/Version.java b/src/main/java/com/opentok/constants/Version.java index 5a70684c..7793ba6f 100644 --- a/src/main/java/com/opentok/constants/Version.java +++ b/src/main/java/com/opentok/constants/Version.java @@ -8,5 +8,5 @@ package com.opentok.constants; public class Version { - public static final String VERSION = "4.16.1"; + public static final String VERSION = "4.17.0"; }