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 @@ -8,7 +8,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
88### Added
99<!-- * add to here -->
1010### Changed
11+ <!-- * add to here -->
12+
13+
14+ ## [ 1.10.2] - 2025-07-11
15+ ### Changed
1116* Migrate to Sonatype Portal OSSRH Staging API due to legacy OSSRH being sunsetted.
17+ * Whitespace surrounding auth key is now stripped.
18+ * Thanks to [ timazhum] ( https://github.com/timazhum ) for the fix in [ #64 ] ( https://github.com/DeepLcom/deepl-java/pull/69 ) .
1219
1320
1421## [ 1.10.1] - 2025-06-18
@@ -172,7 +179,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
172179Initial version.
173180
174181
175- [ Unreleased ] : https://github.com/DeepLcom/deepl-java/compare/v1.10.1...HEAD
182+ [ Unreleased ] : https://github.com/DeepLcom/deepl-java/compare/v1.10.2...HEAD
183+ [ 1.10.2 ] : https://github.com/DeepLcom/deepl-java/compare/v1.10.0...v1.10.2
176184[ 1.10.1 ] : https://github.com/DeepLcom/deepl-java/compare/v1.10.0...v1.10.1
177185[ 1.10.0 ] : https://github.com/DeepLcom/deepl-java/compare/v1.9.0...v1.10.0
178186[ 1.9.0 ] : https://github.com/DeepLcom/deepl-java/compare/v1.8.1...v1.9.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.10.1 "
34+ implementation "com.deepl.api:deepl-java:1.10.2 "
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.10.1 </version>
45+ <version>1.10.2 </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.10.1 "
9+ version = " 1.10.2 "
1010
1111val sharedManifest = the<JavaPluginConvention >().manifest {
1212 attributes (
Original file line number Diff line number Diff line change @@ -92,7 +92,7 @@ public Translator(String authKey) throws IllegalArgumentException {
9292 */
9393 private String constructUserAgentString (boolean sendPlatformInfo , AppInfo appInfo ) {
9494 StringBuilder sb = new StringBuilder ();
95- sb .append ("deepl-java/1.10.1 " );
95+ sb .append ("deepl-java/1.10.2 " );
9696 if (sendPlatformInfo ) {
9797 sb .append (" (" );
9898 Properties props = System .getProperties ();
You can’t perform that action at this time.
0 commit comments