Skip to content

Commit 2e6ecc0

Browse files
committed
docs: Increase version to 1.2.0
1 parent 03b4082 commit 2e6ecc0

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

.gitlab-ci.yml

+1-1
Original file line numberDiff line numberDiff 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"

CHANGELOG.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and 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
7878
Initial 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

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ Java 1.8 or later.
3131
Add 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

deepl-java/build.gradle.kts

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ plugins {
66
}
77

88
group = "com.deepl.api"
9-
version = "1.1.0"
9+
version = "1.2.0"
1010

1111
val sharedManifest = the<JavaPluginConvention>().manifest {
1212
attributes (

deepl-java/src/main/java/com/deepl/api/Translator.java

+1-1
Original file line numberDiff line numberDiff 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();

0 commit comments

Comments
 (0)