File tree 5 files changed +7
-7
lines changed
src/main/java/com/deepl/api
5 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -95,7 +95,7 @@ build_manual:
95
95
- DOCKER_IMAGE : " eclipse-temurin:18-alpine"
96
96
- DOCKER_IMAGE : " openjdk:8-alpine"
97
97
USE_MOCK_SERVER : " use mock server"
98
- - DOCKER_IMAGE : " eclipse-temurin:8-alpine "
98
+ - DOCKER_IMAGE : " eclipse-temurin:8-focal "
99
99
USE_MOCK_SERVER : " use mock server"
100
100
- DOCKER_IMAGE : " eclipse-temurin:11-alpine"
101
101
USE_MOCK_SERVER : " use mock server"
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.2.0 ] - 2023-03-22
8
8
### Added
9
9
* Script to check our source code for license headers and a step for them in the CI.
10
10
* Added system and java version information to the user-agent string that is sent with API calls, along with an opt-out.
@@ -78,7 +78,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
78
78
Initial version.
79
79
80
80
81
- [ Unreleased ] : https://github.com/DeepLcom/deepl-java/compare/v1.1.0...HEAD
81
+ [ 1.2.0 ] : https://github.com/DeepLcom/deepl-java/compare/v1.1.0...v1.2.0
82
82
[ 1.1.0 ] : https://github.com/DeepLcom/deepl-java/compare/v1.0.1...v1.1.0
83
83
[ 1.0.1 ] : https://github.com/DeepLcom/deepl-java/compare/v1.0.0...v1.0.1
84
84
[ 1.0.0 ] : https://github.com/DeepLcom/deepl-java/compare/v0.2.1...v1.0.0
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.1 .0"
34
+ implementation "com.deepl.api:deepl-java:1.2 .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.1 .0</version>
45
+ <version>1.2 .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.1 .0"
9
+ version = " 1.2 .0"
10
10
11
11
val sharedManifest = the<JavaPluginConvention >().manifest {
12
12
attributes (
Original file line number Diff line number Diff line change @@ -85,7 +85,7 @@ public Translator(String authKey) throws IllegalArgumentException {
85
85
*/
86
86
private String constructUserAgentString (boolean sendPlatformInfo , AppInfo appInfo ) {
87
87
StringBuilder sb = new StringBuilder ();
88
- sb .append ("deepl-java/1.1 .0" );
88
+ sb .append ("deepl-java/1.2 .0" );
89
89
if (sendPlatformInfo ) {
90
90
sb .append (" (" );
91
91
Properties props = System .getProperties ();
You can’t perform that action at this time.
0 commit comments