File tree Expand file tree Collapse file tree 4 files changed +6
-6
lines changed
src/main/java/com/deepl/api Expand file tree Collapse file tree 4 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file.
44The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
55and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
66
7- ## Unreleased
7+ ## [ 1.3.0 ] - 2023-06-09
88### Fixed
99* Changed document translation to poll the server every 5 seconds. This should greatly reduce observed document translation processing time.
1010* Fix getUsage request to be a HTTP GET request, not POST.
@@ -84,7 +84,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
8484Initial version.
8585
8686
87- [ Unreleased ] : https://github.com/DeepLcom/deepl-java/compare/v1.2.0...HEAD
87+ [ 1.3.0 ] : https://github.com/DeepLcom/deepl-java/compare/v1.2.0...v1.3.0
8888[ 1.2.0 ] : https://github.com/DeepLcom/deepl-java/compare/v1.1.0...v1.2.0
8989[ 1.1.0 ] : https://github.com/DeepLcom/deepl-java/compare/v1.0.1...v1.1.0
9090[ 1.0.1 ] : https://github.com/DeepLcom/deepl-java/compare/v1.0.0...v1.0.1
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.2 .0"
34+ implementation "com.deepl.api:deepl-java:1.3 .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.2 .0</version>
45+ <version>1.3 .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.2 .0"
9+ version = " 1.3 .0"
1010
1111val sharedManifest = the<JavaPluginConvention >().manifest {
1212 attributes (
Original file line number Diff line number Diff line change @@ -82,7 +82,7 @@ public Translator(String authKey) throws IllegalArgumentException {
8282 */
8383 private String constructUserAgentString (boolean sendPlatformInfo , AppInfo appInfo ) {
8484 StringBuilder sb = new StringBuilder ();
85- sb .append ("deepl-java/1.2 .0" );
85+ sb .append ("deepl-java/1.3 .0" );
8686 if (sendPlatformInfo ) {
8787 sb .append (" (" );
8888 Properties props = System .getProperties ();
You can’t perform that action at this time.
0 commit comments