diff --git a/.bumpversion.cfg b/.bumpversion.cfg index dd9f350c4..99fe092a6 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,7 +1,7 @@ [bumpversion] commit = True tag = True -current_version = 5.0.0 +current_version = 5.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 804d91031..df8ea5824 100644 --- a/README.md +++ b/README.md @@ -32,7 +32,7 @@ For Gradle 3.4 or Higher: ```groovy dependencies { - implementation 'com.nexmo:client:5.0.0' + implementation 'com.nexmo:client:5.1.0' } ``` @@ -40,7 +40,7 @@ For older versions: ```groovy dependencies { - compile 'com.nexmo:client:5.0.0' + compile 'com.nexmo:client:5.1.0' } ``` @@ -52,7 +52,7 @@ Add the following to the correct place in your project's POM file: com.nexmo client - 5.0.0 + 5.1.0 ``` diff --git a/build.gradle b/build.gradle index d27e0a3b1..833183496 100644 --- a/build.gradle +++ b/build.gradle @@ -18,7 +18,7 @@ apply plugin: 'eclipse' group = "com.nexmo" archivesBaseName = "client" -version = "5.0.0" +version = "5.1.0" sourceCompatibility = "1.8" targetCompatibility = "1.8" diff --git a/src/main/java/com/nexmo/client/HttpWrapper.java b/src/main/java/com/nexmo/client/HttpWrapper.java index 598c123aa..10d2997a3 100644 --- a/src/main/java/com/nexmo/client/HttpWrapper.java +++ b/src/main/java/com/nexmo/client/HttpWrapper.java @@ -37,7 +37,7 @@ */ public class HttpWrapper { private static final String CLIENT_NAME = "nexmo-java"; - private static final String CLIENT_VERSION = "5.0.0"; + private static final String CLIENT_VERSION = "5.1.0"; private static final String JAVA_VERSION = System.getProperty("java.version"); private AuthCollection authCollection;