File tree Expand file tree Collapse file tree 4 files changed +13
-5
lines changed
src/main/java/com/deepl/api Expand file tree Collapse file tree 4 files changed +13
-5
lines changed Original file line number Diff line number Diff 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
159166Initial 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
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ Java 1.8 or later.
3131Add 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
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ plugins {
66}
77
88group = " com.deepl.api"
9- version = " 1.9 .0"
9+ version = " 1.10 .0"
1010
1111val sharedManifest = the<JavaPluginConvention >().manifest {
1212 attributes (
Original file line number Diff line number Diff 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 ();
You can’t perform that action at this time.
0 commit comments