diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 4964375af..30ca8ecaf 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,7 +1,7 @@ [bumpversion] commit = True tag = True -current_version = v7.0.0 +current_version = v7.1.0 parse = (?P\d+)\.(?P\d+)\.(?P\d+)(\-(?P[a-z]+))? serialize = {major}.{minor}.{patch} diff --git a/README.md b/README.md index c646e4f13..fdd664011 100644 --- a/README.md +++ b/README.md @@ -34,7 +34,7 @@ For Gradle 3.4 or Higher: ```groovy dependencies { - implementation 'com.vonage:client:7.0.0' + implementation 'com.vonage:client:7.1.0' } ``` @@ -42,7 +42,7 @@ For older versions: ```groovy dependencies { - compile 'com.vonage:client:7.0.0' + compile 'com.vonage:client:7.1.0' } ``` @@ -54,7 +54,7 @@ Add the following to the correct place in your project's POM file: com.vonage client - 7.0.0 + 7.1.0 ``` diff --git a/build.gradle b/build.gradle index 5cdbf2fa9..7cfa69933 100644 --- a/build.gradle +++ b/build.gradle @@ -8,7 +8,7 @@ plugins { group = "com.vonage" archivesBaseName = "client" -version = "7.0.0" +version = "7.1.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 a8de125bc..6c63ab7b3 100644 --- a/src/main/java/com/vonage/client/HttpWrapper.java +++ b/src/main/java/com/vonage/client/HttpWrapper.java @@ -30,7 +30,7 @@ */ public class HttpWrapper { private static final String CLIENT_NAME = "vonage-java-sdk"; - private static final String CLIENT_VERSION = "7.0.0"; + private static final String CLIENT_VERSION = "7.1.0"; private static final String JAVA_VERSION = System.getProperty("java.version"); private static final String USER_AGENT = String.format("%s/%s java/%s", CLIENT_NAME, CLIENT_VERSION, JAVA_VERSION);