Skip to content

Commit 914b845

Browse files
JanEbbingBriannaDelgado
authored andcommitted
docs: Increase version to 1.10.0
1 parent 2a13037 commit 914b845

File tree

4 files changed

+13
-5
lines changed

4 files changed

+13
-5
lines changed

CHANGELOG.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88
### Added
9+
<!-- * add to here -->
10+
### Changed
11+
<!-- * add to here -->
12+
13+
14+
## [1.10.0] - 2025-04-30
15+
### Added
916
* Added support for the /v3 Multilingual Glossary APIs in the client library
1017
while providing backwards compatability for the previous /v2 Glossary
1118
endpoints. Please refer to the README or
@@ -159,7 +166,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
159166
Initial version.
160167

161168

162-
[Unreleased]: https://github.com/DeepLcom/deepl-java/compare/v1.9.0...HEAD
169+
[Unreleased]: https://github.com/DeepLcom/deepl-java/compare/v1.10.0...HEAD
170+
[1.10.0]: https://github.com/DeepLcom/deepl-java/compare/v1.9.0...v1.10.0
163171
[1.9.0]: https://github.com/DeepLcom/deepl-java/compare/v1.8.1...v1.9.0
164172
[1.8.1]: https://github.com/DeepLcom/deepl-java/compare/v1.8.0...v1.8.1
165173
[1.8.0]: https://github.com/DeepLcom/deepl-java/compare/v1.7.0...v1.8.0

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ Java 1.8 or later.
3131
Add this dependency to your project's build file:
3232

3333
```
34-
implementation "com.deepl.api:deepl-java:1.9.0"
34+
implementation "com.deepl.api:deepl-java:1.10.0"
3535
```
3636

3737
### Maven users
@@ -42,7 +42,7 @@ Add this dependency to your project's POM:
4242
<dependency>
4343
<groupId>com.deepl.api</groupId>
4444
<artifactId>deepl-java</artifactId>
45-
<version>1.9.0</version>
45+
<version>1.10.0</version>
4646
</dependency>
4747
```
4848

deepl-java/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ plugins {
66
}
77

88
group = "com.deepl.api"
9-
version = "1.9.0"
9+
version = "1.10.0"
1010

1111
val sharedManifest = the<JavaPluginConvention>().manifest {
1212
attributes (

deepl-java/src/main/java/com/deepl/api/Translator.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ public Translator(String authKey) throws IllegalArgumentException {
8888
*/
8989
private String constructUserAgentString(boolean sendPlatformInfo, AppInfo appInfo) {
9090
StringBuilder sb = new StringBuilder();
91-
sb.append("deepl-java/1.9.0");
91+
sb.append("deepl-java/1.10.0");
9292
if (sendPlatformInfo) {
9393
sb.append(" (");
9494
Properties props = System.getProperties();

0 commit comments

Comments
 (0)