Skip to content

Commit ef09094

Browse files
docs: Increase version to 1.12.0
1 parent bca4f82 commit ef09094

File tree

4 files changed

+14
-5
lines changed

4 files changed

+14
-5
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.11.0"
4+
current_version = "1.12.0"
55
parse = "(?P<major>\\d+)\\.(?P<minor>\\d+)\\.(?P<patch>\\d+)"
66
serialize = ["{major}.{minor}.{patch}"]
77
search = "{current_version}"

CHANGELOG.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [1.12.0] - 2025-11-12
10+
### Added
11+
- Added support for the `GET /v3/style_rules` endpoint in the client library, the
12+
implementation can be found in the `DeepLClient` class. Please refer to the
13+
README for usage instructions
14+
- Added `styleId` option to `translateText()` which allows text translation with
15+
style rules.
16+
917
## [1.11.0] - 2025-11-04
1018
### Added
1119
- 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.).
@@ -170,7 +178,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
170178
## [0.1.0] - 2022-09-08
171179
Initial version.
172180

173-
[Unreleased]: https://github.com/DeepLcom/deepl-java/compare/v1.11.0...HEAD
181+
[Unreleased]: https://github.com/DeepLcom/deepl-java/compare/v1.12.0...HEAD
182+
[1.12.0]: https://github.com/DeepLcom/deepl-java/compare/v1.11.0...v1.12.0
174183
[1.11.0]: https://github.com/DeepLcom/deepl-java/compare/v1.10.3...v1.11.0
175184
[1.10.3]: https://github.com/DeepLcom/deepl-java/compare/v1.10.2...v1.10.3
176185
[1.10.2]: https://github.com/DeepLcom/deepl-java/compare/v1.10.1...v1.10.2

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.11.0"
34+
implementation "com.deepl.api:deepl-java:1.12.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.11.0</version>
45+
<version>1.12.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
@@ -10,7 +10,7 @@ plugins {
1010
}
1111

1212
group = "com.deepl.api"
13-
version = "1.11.0"
13+
version = "1.12.0"
1414

1515
val sharedManifest = the<JavaPluginConvention>().manifest {
1616
attributes (

0 commit comments

Comments
 (0)