File tree 4 files changed +6
-6
lines changed
src/main/java/com/deepl/api
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.
4
4
The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
5
5
and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
6
6
7
- ## Unreleased
7
+ ## [ 1.3.0 ] - 2023-06-09
8
8
### Fixed
9
9
* Changed document translation to poll the server every 5 seconds. This should greatly reduce observed document translation processing time.
10
10
* 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
84
84
Initial version.
85
85
86
86
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
88
88
[ 1.2.0 ] : https://github.com/DeepLcom/deepl-java/compare/v1.1.0...v1.2.0
89
89
[ 1.1.0 ] : https://github.com/DeepLcom/deepl-java/compare/v1.0.1...v1.1.0
90
90
[ 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.
31
31
Add this dependency to your project's build file:
32
32
33
33
```
34
- implementation "com.deepl.api:deepl-java:1.2 .0"
34
+ implementation "com.deepl.api:deepl-java:1.3 .0"
35
35
```
36
36
37
37
### Maven users
@@ -42,7 +42,7 @@ Add this dependency to your project's POM:
42
42
<dependency>
43
43
<groupId>com.deepl.api</groupId>
44
44
<artifactId>deepl-java</artifactId>
45
- <version>1.2 .0</version>
45
+ <version>1.3 .0</version>
46
46
</dependency>
47
47
```
48
48
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ plugins {
6
6
}
7
7
8
8
group = " com.deepl.api"
9
- version = " 1.2 .0"
9
+ version = " 1.3 .0"
10
10
11
11
val sharedManifest = the<JavaPluginConvention >().manifest {
12
12
attributes (
Original file line number Diff line number Diff line change @@ -82,7 +82,7 @@ public Translator(String authKey) throws IllegalArgumentException {
82
82
*/
83
83
private String constructUserAgentString (boolean sendPlatformInfo , AppInfo appInfo ) {
84
84
StringBuilder sb = new StringBuilder ();
85
- sb .append ("deepl-java/1.2 .0" );
85
+ sb .append ("deepl-java/1.3 .0" );
86
86
if (sendPlatformInfo ) {
87
87
sb .append (" (" );
88
88
Properties props = System .getProperties ();
You can’t perform that action at this time.
0 commit comments