File tree Expand file tree Collapse file tree 5 files changed +7
-7
lines changed
src/main/java/com/deepl/api Expand file tree Collapse file tree 5 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -95,7 +95,7 @@ build_manual:
9595 - DOCKER_IMAGE : " eclipse-temurin:18-alpine"
9696 - DOCKER_IMAGE : " openjdk:8-alpine"
9797 USE_MOCK_SERVER : " use mock server"
98- - DOCKER_IMAGE : " eclipse-temurin:8-alpine "
98+ - DOCKER_IMAGE : " eclipse-temurin:8-focal "
9999 USE_MOCK_SERVER : " use mock server"
100100 - DOCKER_IMAGE : " eclipse-temurin:11-alpine"
101101 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.
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.2.0 ] - 2023-03-22
88### Added
99* Script to check our source code for license headers and a step for them in the CI.
1010* 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
7878Initial version.
7979
8080
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
8282[ 1.1.0 ] : https://github.com/DeepLcom/deepl-java/compare/v1.0.1...v1.1.0
8383[ 1.0.1 ] : https://github.com/DeepLcom/deepl-java/compare/v1.0.0...v1.0.1
8484[ 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.
3131Add this dependency to your project's build file:
3232
3333```
34- implementation "com.deepl.api:deepl-java:1.1 .0"
34+ implementation "com.deepl.api:deepl-java:1.2 .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.1 .0</version>
45+ <version>1.2 .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.1 .0"
9+ version = " 1.2 .0"
1010
1111val sharedManifest = the<JavaPluginConvention >().manifest {
1212 attributes (
Original file line number Diff line number Diff line change @@ -85,7 +85,7 @@ public Translator(String authKey) throws IllegalArgumentException {
8585 */
8686 private String constructUserAgentString (boolean sendPlatformInfo , AppInfo appInfo ) {
8787 StringBuilder sb = new StringBuilder ();
88- sb .append ("deepl-java/1.1 .0" );
88+ sb .append ("deepl-java/1.2 .0" );
8989 if (sendPlatformInfo ) {
9090 sb .append (" (" );
9191 Properties props = System .getProperties ();
You can’t perform that action at this time.
0 commit comments