diff --git a/.bumpversion.cfg b/.bumpversion.cfg index cf2959040..3a99889e6 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,7 +1,7 @@ [bumpversion] commit = True tag = True -current_version = v6.4.2 +current_version = v6.5.0 parse = (?P\d+)\.(?P\d+)\.(?P\d+)(\-(?P[a-z]+))? serialize = {major}.{minor}.{patch} diff --git a/README.md b/README.md index 93c9de1f2..cd3647580 100644 --- a/README.md +++ b/README.md @@ -34,7 +34,7 @@ For Gradle 3.4 or Higher: ```groovy dependencies { - implementation 'com.vonage:client:6.4.2' + implementation 'com.vonage:client:6.5.0' } ``` @@ -42,7 +42,7 @@ For older versions: ```groovy dependencies { - compile 'com.vonage:client:6.4.2' + compile 'com.vonage:client:6.5.0' } ``` @@ -54,7 +54,7 @@ Add the following to the correct place in your project's POM file: com.vonage client - 6.4.2 + 6.5.0 ``` diff --git a/build.gradle b/build.gradle index 433e95d3a..cec11ff6b 100644 --- a/build.gradle +++ b/build.gradle @@ -8,7 +8,7 @@ plugins { group = "com.vonage" archivesBaseName = "client" -version = "6.4.2" +version = "6.5.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 1d4ccfd57..10998d6ca 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 = "6.4.2"; + private static final String CLIENT_VERSION = "6.5.0"; private static final String JAVA_VERSION = System.getProperty("java.version"); private AuthCollection authCollection;