diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 5f28644b4..1c217c622 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,7 +1,7 @@ [bumpversion] commit = True tag = True -current_version = 6.1.0 +current_version = 6.2.0 parse = (?P\d+)\.(?P\d+)\.(?P\d+)(\-(?P[a-z]+))? serialize = {major}.{minor}.{patch} diff --git a/CHANGELOG.md b/CHANGELOG.md index 3368bd0e5..107c6ef68 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ## [6.2.0] - Adding ContentId and EntityId to message class for DLT +- Adding Detail enum and string for certain voice webhooks ## [6.1.0] - Adding Language and Style to the Voice Talk Action and the Talk Request diff --git a/README.md b/README.md index 569de4cd8..073d0865b 100644 --- a/README.md +++ b/README.md @@ -34,7 +34,7 @@ For Gradle 3.4 or Higher: ```groovy dependencies { - implementation 'com.vonage:client:6.1.0' + implementation 'com.vonage:client:6.2.0' } ``` @@ -42,7 +42,7 @@ For older versions: ```groovy dependencies { - compile 'com.vonage:client:6.1.0' + compile 'com.vonage:client:6.2.0' } ``` @@ -54,7 +54,7 @@ Add the following to the correct place in your project's POM file: com.vonage client - 6.1.0 + 6.2.0 ``` diff --git a/build.gradle b/build.gradle index 1ddd8c4e5..f941abc35 100644 --- a/build.gradle +++ b/build.gradle @@ -16,7 +16,7 @@ plugins { group = "com.vonage" archivesBaseName = "client" -version = "6.1.0" +version = "6.2.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 3d1690ce5..cad6b6159 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.1.0"; + private static final String CLIENT_VERSION = "6.2.0"; private static final String JAVA_VERSION = System.getProperty("java.version"); private AuthCollection authCollection;