Skip to content

Commit e91115a

Browse files
Bump version to 1.14.0
1 parent 71cc3f4 commit e91115a

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.13.0"
4+
current_version = "1.14.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.14.0] - 2025-12-10
810
### Added
911
- Added `setTagHandlingVersion()` method to `TextTranslationOptions` to specify which version of the tag handling algorithm to use. Options are `v1` and `v2`.
1012

@@ -191,7 +193,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
191193
## [0.1.0] - 2022-09-08
192194
Initial version.
193195

194-
[Unreleased]: https://github.com/DeepLcom/deepl-java/compare/v1.13.0...HEAD
196+
[Unreleased]: https://github.com/DeepLcom/deepl-java/compare/v1.14.0...HEAD
197+
[1.14.0]: https://github.com/DeepLcom/deepl-java/compare/v1.13.0...v1.14.0
195198
[1.13.0]: https://github.com/DeepLcom/deepl-java/compare/v1.12.0...v1.13.0
196199
[1.12.0]: https://github.com/DeepLcom/deepl-java/compare/v1.11.0...v1.12.0
197200
[1.11.0]: https://github.com/DeepLcom/deepl-java/compare/v1.10.3...v1.11.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.13.0"
34+
implementation "com.deepl.api:deepl-java:1.14.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.13.0</version>
45+
<version>1.14.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.13.0"
13+
version = "1.14.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.13.0");
95+
sb.append("deepl-java/1.14.0");
9696
if (sendPlatformInfo) {
9797
sb.append(" (");
9898
Properties props = System.getProperties();

0 commit comments

Comments
 (0)