diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 3d8e0f2b8..795af75a9 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,7 +1,7 @@ [bumpversion] commit = True tag = True -current_version = 5.5.0 +current_version = 5.6.0 parse = (?P\d+)\.(?P\d+)\.(?P\d+)(\-(?P[a-z]+))? serialize = {major}.{minor}.{patch} diff --git a/README.md b/README.md index a6f9fed67..c187598c4 100644 --- a/README.md +++ b/README.md @@ -34,7 +34,7 @@ For Gradle 3.4 or Higher: ```groovy dependencies { - implementation 'com.vonage:client:5.5.0' + implementation 'com.vonage:client:5.6.0' } ``` @@ -42,7 +42,7 @@ For older versions: ```groovy dependencies { - compile 'com.vonage:client:5.5.0' + compile 'com.vonage:client:5.6.0' } ``` @@ -54,7 +54,7 @@ Add the following to the correct place in your project's POM file: com.vonage client - 5.5.0 + 5.6.0 ``` diff --git a/build.gradle b/build.gradle index 91186784f..ef6162506 100644 --- a/build.gradle +++ b/build.gradle @@ -16,7 +16,7 @@ plugins { group = "com.vonage" archivesBaseName = "client" -version = "5.5.0" +version = "5.6.0" sourceCompatibility = "1.8" targetCompatibility = "1.8" diff --git a/src/main/java/com/vonage/client/HttpWrapper.java b/src/main/java/com/vonage/client/HttpWrapper.java index f0cafc84d..a487ef9c5 100644 --- a/src/main/java/com/vonage/client/HttpWrapper.java +++ b/src/main/java/com/vonage/client/HttpWrapper.java @@ -31,7 +31,7 @@ */ public class HttpWrapper { private static final String CLIENT_NAME = "vonage-java-sdk"; - private static final String CLIENT_VERSION = "5.5.0"; + private static final String CLIENT_VERSION = "5.6.0"; private static final String JAVA_VERSION = System.getProperty("java.version"); private AuthCollection authCollection;