From 843392e228dd5a263b748f8ec2e10ecafa2911a2 Mon Sep 17 00:00:00 2001 From: Sina Madani Date: Tue, 9 May 2023 14:22:25 +0100 Subject: [PATCH] =?UTF-8?q?Bump=20version:=20v4.9.0=20=E2=86=92=20v4.10.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .bumpversion.cfg | 2 +- README.md | 4 ++-- build.gradle | 2 +- src/main/java/com/opentok/constants/Version.java | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index f663577e..54ae869e 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,7 +1,7 @@ [bumpversion] commit = True tag = False -current_version = v4.9.0 +current_version = v4.10.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 84cf0e02..0bdbda12 100644 --- a/README.md +++ b/README.md @@ -34,7 +34,7 @@ When you use Maven as your build tool, you can manage dependencies in the `pom.x com.tokbox opentok-server-sdk - 4.9.0 + 4.10.0 ``` @@ -44,7 +44,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.9.0' + compile group: 'com.tokbox', name: 'opentok-server-sdk', version: '4.10.0' } ``` diff --git a/build.gradle b/build.gradle index 1c9de58e..c83960e5 100644 --- a/build.gradle +++ b/build.gradle @@ -11,7 +11,7 @@ plugins { group = 'com.tokbox' archivesBaseName = 'opentok-server-sdk' -version = '4.9.0' +version = '4.10.0' sourceCompatibility = "1.8" targetCompatibility = "1.8" diff --git a/src/main/java/com/opentok/constants/Version.java b/src/main/java/com/opentok/constants/Version.java index f89f5457..d0ff3692 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.9.0"; + public static final String VERSION = "4.10.0"; }