From 3071def7f1e862346ad3038040e2e881d004b995 Mon Sep 17 00:00:00 2001 From: Steve Crow Date: Thu, 1 Aug 2019 16:46:46 -0400 Subject: [PATCH] =?UTF-8?q?Bump=20version:=204.4.0=20=E2=86=92=205.0.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .bumpversion.cfg | 2 +- README.md | 6 +++--- build.gradle | 2 +- src/main/java/com/nexmo/client/HttpWrapper.java | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 6c9d78b0c..dd9f350c4 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,7 +1,7 @@ [bumpversion] commit = True tag = True -current_version = 4.4.0 +current_version = 5.0.0 parse = (?P\d+)\.(?P\d+)\.(?P\d+)(\-(?P[a-z]+))? serialize = {major}.{minor}.{patch} diff --git a/README.md b/README.md index 6c2c9ec09..804d91031 100644 --- a/README.md +++ b/README.md @@ -32,7 +32,7 @@ For Gradle 3.4 or Higher: ```groovy dependencies { - implementation 'com.nexmo:client:4.4.0' + implementation 'com.nexmo:client:5.0.0' } ``` @@ -40,7 +40,7 @@ For older versions: ```groovy dependencies { - compile 'com.nexmo:client:4.4.0' + compile 'com.nexmo:client:5.0.0' } ``` @@ -52,7 +52,7 @@ Add the following to the correct place in your project's POM file: com.nexmo client - 4.4.0 + 5.0.0 ``` diff --git a/build.gradle b/build.gradle index 40ac2a4f0..0c7f0cccf 100644 --- a/build.gradle +++ b/build.gradle @@ -18,7 +18,7 @@ apply plugin: 'eclipse' group = "com.nexmo" archivesBaseName = "client" -version = "4.4.0" +version = "5.0.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 427c73fc4..598c123aa 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 = "4.4.0"; + private static final String CLIENT_VERSION = "5.0.0"; private static final String JAVA_VERSION = System.getProperty("java.version"); private AuthCollection authCollection;