Skip to content

Commit 424aad4

Browse files
docs: Bump version to 1.15.0
1 parent fbdee89 commit 424aad4

File tree

5 files changed

+9
-6
lines changed

5 files changed

+9
-6
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.14.0"
4+
current_version = "1.15.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: 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.15.0] - 2026-03-26
810
### Added
911
- Added JSON request body support to `HttpContent` and `HttpClientWrapper`, enabling
1012
JSON-encoded API calls via `sendJsonRequestWithBackoff()` and `sendJsonPatchRequestWithBackoff()`.
@@ -216,7 +218,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
216218
## [0.1.0] - 2022-09-08
217219
Initial version.
218220

219-
[Unreleased]: https://github.com/DeepLcom/deepl-java/compare/v1.14.0...HEAD
221+
[Unreleased]: https://github.com/DeepLcom/deepl-java/compare/v1.15.0...HEAD
222+
[1.15.0]: https://github.com/DeepLcom/deepl-java/compare/v1.14.0...v1.15.0
220223
[1.14.0]: https://github.com/DeepLcom/deepl-java/compare/v1.13.0...v1.14.0
221224
[1.13.0]: https://github.com/DeepLcom/deepl-java/compare/v1.12.0...v1.13.0
222225
[1.12.0]: https://github.com/DeepLcom/deepl-java/compare/v1.11.0...v1.12.0

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.14.0"
34+
implementation "com.deepl.api:deepl-java:1.15.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.14.0</version>
45+
<version>1.15.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.14.0"
13+
version = "1.15.0"
1414

1515
val sharedManifest = the<JavaPluginConvention>().manifest {
1616
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.14.0");
95+
sb.append("deepl-java/1.15.0");
9696
if (sendPlatformInfo) {
9797
sb.append(" (");
9898
Properties props = System.getProperties();

0 commit comments

Comments
 (0)