Skip to content

Commit

Permalink
Merge pull request #159 from Nexmo/3.4.0-release
Browse files Browse the repository at this point in the history
3.4.0 Release
  • Loading branch information
cr0wst authored May 8, 2018
2 parents 55477be + 7cb0c9f commit a1e2e86
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 13 deletions.
3 changes: 1 addition & 2 deletions .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
[bumpversion]
commit = True
tag = True
current_version = 3.3.0

current_version = 3.4.0
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\-(?P<release>[a-z]+))?
serialize =
{major}.{minor}.{patch}
Expand Down
10 changes: 3 additions & 7 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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.
Expand All @@ -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
Expand All @@ -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)


Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ repositories {
}
dependencies {
compile 'com.nexmo:client:3.3.0'
compile 'com.nexmo:client:3.4.0'
}
```

Expand All @@ -40,7 +40,7 @@ Add the following to the correct place in your project's POM file:
<dependency>
<groupId>com.nexmo</groupId>
<artifactId>client</artifactId>
<version>3.3.0</version>
<version>3.4.0</version>
</dependency>
```

Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/nexmo/client/HttpWrapper.java
Original file line number Diff line number Diff line change
Expand Up @@ -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();
}
Expand Down

0 comments on commit a1e2e86

Please sign in to comment.