Skip to content

Commit bd2599d

Browse files
daniel-jones-devLucas Mathis
authored andcommitted
docs: Increase version to 1.11.0, update Java 8 image for testing
1 parent eb79c1d commit bd2599d

File tree

6 files changed

+10
-7
lines changed

6 files changed

+10
-7
lines changed

.bumpversion.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Configuration file for bumpversion
22
# See https://github.com/callowayproject/bump-my-version
33
[tool.bumpversion]
4-
current_version = "1.10.3"
4+
current_version = "1.11.0"
55
parse = "(?P<major>\\d+)\\.(?P<minor>\\d+)\\.(?P<patch>\\d+)"
66
serialize = ["{major}.{minor}.{patch}"]
77
search = "{current_version}"

.gitlab-ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ build_manual:
127127
parallel:
128128
matrix:
129129
- DOCKER_IMAGE: "eclipse-temurin:18-alpine"
130-
- DOCKER_IMAGE: "openjdk:8-alpine"
130+
- DOCKER_IMAGE: "amazoncorretto:8-alpine"
131131
USE_MOCK_SERVER: "use mock server"
132132
- DOCKER_IMAGE: "eclipse-temurin:8-focal"
133133
USE_MOCK_SERVER: "use mock server"

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ 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

77
## [Unreleased]
8+
9+
## [1.11.0] - 2025-11-04
810
### Added
911
- Added `extraRequestParameters` option to text and document translation methods to pass arbitrary parameters in the request body. This can be used to access beta features or override built-in parameters (such as `target_lang`, `source_lang`, etc.).
1012

@@ -168,7 +170,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
168170
## [0.1.0] - 2022-09-08
169171
Initial version.
170172

171-
[Unreleased]: https://github.com/DeepLcom/deepl-java/compare/v1.10.3...HEAD
173+
[Unreleased]: https://github.com/DeepLcom/deepl-java/compare/v1.11.0...HEAD
174+
[1.11.0]: https://github.com/DeepLcom/deepl-java/compare/v1.10.3...v1.11.0
172175
[1.10.3]: https://github.com/DeepLcom/deepl-java/compare/v1.10.2...v1.10.3
173176
[1.10.2]: https://github.com/DeepLcom/deepl-java/compare/v1.10.1...v1.10.2
174177
[1.10.1]: https://github.com/DeepLcom/deepl-java/compare/v1.10.0...v1.10.1

README.md

Lines changed: 2 additions & 2 deletions
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.10.3"
34+
implementation "com.deepl.api:deepl-java:1.11.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.10.3</version>
45+
<version>1.11.0</version>
4646
</dependency>
4747
```
4848

deepl-java/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ plugins {
66
}
77

88
group = "com.deepl.api"
9-
version = "1.10.3"
9+
version = "1.11.0"
1010

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

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ public Translator(String authKey) throws IllegalArgumentException {
9292
*/
9393
private String constructUserAgentString(boolean sendPlatformInfo, AppInfo appInfo) {
9494
StringBuilder sb = new StringBuilder();
95-
sb.append("deepl-java/1.10.3");
95+
sb.append("deepl-java/1.11.0");
9696
if (sendPlatformInfo) {
9797
sb.append(" (");
9898
Properties props = System.getProperties();

0 commit comments

Comments
 (0)