From 7f909f7c07cc253cd30d6b21c71200f403ae13f8 Mon Sep 17 00:00:00 2001 From: Steve Crow Date: Tue, 8 May 2018 10:28:41 -0400 Subject: [PATCH 1/2] =?UTF-8?q?Bump=20version:=203.3.0=20=E2=86=92=203.4.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .bumpversion.cfg | 3 +-- README.md | 4 ++-- build.gradle | 2 +- src/main/java/com/nexmo/client/HttpWrapper.java | 2 +- 4 files changed, 5 insertions(+), 6 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 57fbe0385..bbc74fb06 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,8 +1,7 @@ [bumpversion] commit = True tag = True -current_version = 3.3.0 - +current_version = 3.4.0 parse = (?P\d+)\.(?P\d+)\.(?P\d+)(\-(?P[a-z]+))? serialize = {major}.{minor}.{patch} diff --git a/README.md b/README.md index 8877b5981..3251492f8 100644 --- a/README.md +++ b/README.md @@ -28,7 +28,7 @@ repositories { } dependencies { - compile 'com.nexmo:client:3.3.0' + compile 'com.nexmo:client:3.4.0' } ``` @@ -40,7 +40,7 @@ Add the following to the correct place in your project's POM file: com.nexmo client - 3.3.0 + 3.4.0 ``` diff --git a/build.gradle b/build.gradle index 612ca5fe3..c93bc79d0 100644 --- a/build.gradle +++ b/build.gradle @@ -18,7 +18,7 @@ apply plugin: 'eclipse' group = "com.nexmo" archivesBaseName = "client" -version = "3.3.0" +version = "3.4.0" sourceCompatibility = "1.7" targetCompatibility = "1.7" diff --git a/src/main/java/com/nexmo/client/HttpWrapper.java b/src/main/java/com/nexmo/client/HttpWrapper.java index 7e8096a5e..a28aaba41 100644 --- a/src/main/java/com/nexmo/client/HttpWrapper.java +++ b/src/main/java/com/nexmo/client/HttpWrapper.java @@ -85,7 +85,7 @@ protected HttpClient createHttpClient() { return HttpClientBuilder.create() .setConnectionManager(connectionManager) - .setUserAgent("nexmo-java/3.3.0") + .setUserAgent("nexmo-java/3.4.0") .setDefaultRequestConfig(requestConfig) .build(); } From 7cb0c9fdd4e921f46d502a61d8421b025816c8e9 Mon Sep 17 00:00:00 2001 From: Steve Crow Date: Tue, 8 May 2018 10:40:41 -0400 Subject: [PATCH 2/2] Update changelog for release. --- CHANGELOG.md | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9a0acfd34..dc1305136 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,14 +1,12 @@ # Change Log - All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/). -## [Development] - -### Modified +## [3.4.0] - 2018-05-08 +### Changed - Modify call now works with the API again, returning `null` (because the API now returns 204 No Content) - VerifyRequest now supports all supported parameters. - Client-side validation for the `from` parameter's length on the `Message` class has been removed. @@ -18,8 +16,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ## [3.2.0] - 2017-11-30 -### Modified - +### Changed - Add signature authentication support to the API endpoints which support it. ## [3.1.0] - 2017-10-24 @@ -29,7 +26,6 @@ and this project adheres to [Semantic Versioning](http://semver.org/). - Add `VoiceClient.downloadRecording` ### Changed - - Made exceptions from `AuthCollection`'s `getAuth` and `getAcceptableAuthMethod` more specific. (Backwards compatible change)