Skip to content

Commit

Permalink
Merge pull request #363 from Vonage/6.2.0-release
Browse files Browse the repository at this point in the history
6.2.0 release
  • Loading branch information
slorello89 authored Mar 11, 2021
2 parents 86cb98f + c6fe2d8 commit 37ffdf0
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[bumpversion]
commit = True
tag = True
current_version = 6.1.0
current_version = 6.2.0
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\-(?P<release>[a-z]+))?
serialize =
{major}.{minor}.{patch}
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).

## [6.2.0]
- Adding ContentId and EntityId to message class for DLT
- Adding Detail enum and string for certain voice webhooks

## [6.1.0]
- Adding Language and Style to the Voice Talk Action and the Talk Request
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,15 +34,15 @@ For Gradle 3.4 or Higher:

```groovy
dependencies {
implementation 'com.vonage:client:6.1.0'
implementation 'com.vonage:client:6.2.0'
}
```

For older versions:

```groovy
dependencies {
compile 'com.vonage:client:6.1.0'
compile 'com.vonage:client:6.2.0'
}
```

Expand All @@ -54,7 +54,7 @@ Add the following to the correct place in your project's POM file:
<dependency>
<groupId>com.vonage</groupId>
<artifactId>client</artifactId>
<version>6.1.0</version>
<version>6.2.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 @@ -16,7 +16,7 @@ plugins {

group = "com.vonage"
archivesBaseName = "client"
version = "6.1.0"
version = "6.2.0"

sourceCompatibility = "1.8"
targetCompatibility = "1.8"
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/vonage/client/HttpWrapper.java
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
*/
public class HttpWrapper {
private static final String CLIENT_NAME = "vonage-java-sdk";
private static final String CLIENT_VERSION = "6.1.0";
private static final String CLIENT_VERSION = "6.2.0";
private static final String JAVA_VERSION = System.getProperty("java.version");

private AuthCollection authCollection;
Expand Down

0 comments on commit 37ffdf0

Please sign in to comment.