Skip to content

Commit

Permalink
Merge branch '6.1.0-release'
Browse files Browse the repository at this point in the history
  • Loading branch information
slorello89 committed Dec 17, 2020
2 parents d4c8532 + 906744f commit 67d832f
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 10 deletions.
3 changes: 2 additions & 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.0.0
current_version = 6.1.0
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\-(?P<release>[a-z]+))?
serialize =
{major}.{minor}.{patch}
Expand All @@ -11,3 +11,4 @@ serialize =
[bumpversion:file:README.md]

[bumpversion:file:src/main/java/com/vonage/client/HttpWrapper.java]

9 changes: 3 additions & 6 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.0.0'
implementation 'com.vonage:client:6.1.0'
}
```

For older versions:

```groovy
dependencies {
compile 'com.vonage:client:6.0.0'
compile 'com.vonage:client:6.1.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.0.0</version>
<version>6.1.0</version>
</dependency>
```

Expand Down Expand Up @@ -230,11 +230,9 @@ Each of the `Action` items contain a `Builder` class that can be used for constr

```java
TalkAction intro = TalkAction.builder("At the tone, record your response and press #.")
.voiceName(VoiceName.KIMBERLY)
.build();

TalkAction outro = TalkAction.builder("Thanks, goodbye!")
.voiceName(VoiceName.KIMBERLY)
.build();

RecordAction record = RecordAction.builder()
Expand All @@ -261,7 +259,6 @@ VonageClient client = VonageClient.builder()

Ncco ncco = new Ncco(
TalkAction.builder("Hi, this is Russell. You are listening to a text-to-speech Call made with Vonage's Voice API")
.voiceName(VoiceName.RUSSELL)
.build()
);

Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ buildscript {

plugins {
id 'java'
id 'com.github.johnrengelman.shadow' version '6.0.0'
id 'com.github.johnrengelman.shadow' version '6.1.0'
id 'jacoco'
id 'maven'
id 'signing'
Expand All @@ -16,7 +16,7 @@ plugins {

group = "com.vonage"
archivesBaseName = "client"
version = "6.0.0"
version = "6.1.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.0.0";
private static final String CLIENT_VERSION = "6.1.0";
private static final String JAVA_VERSION = System.getProperty("java.version");

private AuthCollection authCollection;
Expand Down

0 comments on commit 67d832f

Please sign in to comment.