diff --git a/.bumpversion.cfg b/.bumpversion.cfg index b50b5cffe..3809dd2c8 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,7 +1,7 @@ [bumpversion] commit = True tag = False -current_version = v8.1.0 +current_version = v8.2.0 parse = (?P\d+)\.(?P\d+)\.(?P\d+)(\-(?P[a-z]+)(?P\d+))? serialize = {major}.{minor}.{patch}-{release}{build} diff --git a/README.md b/README.md index 6d9d954e1..601e8a944 100644 --- a/README.md +++ b/README.md @@ -51,9 +51,9 @@ See all of our SDKs and integrations on the [Vonage Developer portal](https://de ## Installation -Releases are published to [Maven Central](https://central.sonatype.com/artifact/com.vonage/server-sdk/8.1.0/snippets). +Releases are published to [Maven Central](https://central.sonatype.com/artifact/com.vonage/server-sdk/8.2.0/snippets). Instructions for your build system can be found in the snippets section. -They're also available from [here](https://mvnrepository.com/artifact/com.vonage/server-sdk/8.1.0). +They're also available from [here](https://mvnrepository.com/artifact/com.vonage/server-sdk/8.2.0). Release notes can be found in the [changelog](CHANGELOG.md). ### Build It Yourself diff --git a/build.gradle b/build.gradle index 259e914d4..dfb5b53f9 100644 --- a/build.gradle +++ b/build.gradle @@ -9,7 +9,7 @@ plugins { group = "com.vonage" archivesBaseName = "server-sdk" -version = "8.1.0" +version = "8.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 3bb061c58..664b7fbbb 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 = "8.1.0"; + private static final String CLIENT_VERSION = "8.2.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);