Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@
All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).

# [9.4.2] - 2025-10-23
- Added missing supported languages (Lithuanian and Marathi) to `TextToSpeechLanguage` enum

# [9.4.1] - 2025-08-22
- Fixed typo for verify to correct the call to next workflow

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ Add the following to your `build.gradle` or `build.gradle.kts` file:

```groovy
dependencies {
implementation("com.vonage:server-sdk:9.4.1")
implementation("com.vonage:server-sdk:9.4.2")
}
```

Expand All @@ -85,7 +85,7 @@ Add the following to the `<dependencies>` section of your `pom.xml` file:
<dependency>
<groupId>com.vonage</groupId>
<artifactId>server-sdk</artifactId>
<version>9.4.1</version>
<version>9.4.2</version>
</dependency>
```

Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

<groupId>com.vonage</groupId>
<artifactId>server-sdk</artifactId>
<version>9.4.1</version>
<version>9.4.2</version>

<name>Vonage Java Server SDK</name>
<description>Java client for Vonage APIs</description>
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 @@ -37,7 +37,7 @@
public class HttpWrapper {
private static final String
CLIENT_NAME = "vonage-java-sdk",
CLIENT_VERSION = "9.4.1",
CLIENT_VERSION = "9.4.2",
JAVA_VERSION = System.getProperty("java.version"),
USER_AGENT = String.format("%s/%s java/%s", CLIENT_NAME, CLIENT_VERSION, JAVA_VERSION);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,8 @@ public enum TextToSpeechLanguage {
UKRAINIAN("uk-UA"),
VIETNAMESE("vi-VN"),
CHINESE_YUE("yue-CN"),
LITHUANIAN("lt-LT"),
MARATHI("mr-IN"),

@JsonEnumDefaultValue
UNKNOWN("Unknown");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,8 @@ public void testLanguageNames() {
assertEquals(UKRAINIAN, fromString("uk-UA"));
assertEquals(VIETNAMESE, fromString("vi-VN"));
assertEquals(CHINESE_YUE, fromString("yue-CN"));
assertEquals(LITHUANIAN, fromString("lt-LT"));
assertEquals(MARATHI, fromString("mr-IN"));
assertEquals(UNKNOWN, fromString("Klingon"));
}

Expand Down