Skip to content

Commit c84587e

Browse files
docs: Increase version to 1.10.3
1 parent 1423ca7 commit c84587e

File tree

4 files changed

+13
-5
lines changed

4 files changed

+13
-5
lines changed

CHANGELOG.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,13 @@ 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+
### Added
9+
<!-- * add to here -->
10+
### Changed
11+
<!-- * add to here -->
12+
13+
14+
## [1.10.3] - 2025-08-22
815
### Security
916
* Updated `org.apache.httpcomponents:httpclient` to 4.5.14 due to [CVE-2020-13956](https://nvd.nist.gov/vuln/detail/CVE-2020-13956).
1017
* Thanks to [warm-tune](https://github.com/warm-tune) for reporting in [#72](https://github.com/DeepLcom/deepl-java/issues/72).
@@ -178,7 +185,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
178185
Initial version.
179186

180187

181-
[Unreleased]: https://github.com/DeepLcom/deepl-java/compare/v1.10.2...HEAD
188+
[Unreleased]: https://github.com/DeepLcom/deepl-java/compare/v1.10.3...HEAD
189+
[1.10.3]: https://github.com/DeepLcom/deepl-java/compare/v1.10.2...v1.10.3
182190
[1.10.2]: https://github.com/DeepLcom/deepl-java/compare/v1.10.0...v1.10.2
183191
[1.10.1]: https://github.com/DeepLcom/deepl-java/compare/v1.10.0...v1.10.1
184192
[1.10.0]: https://github.com/DeepLcom/deepl-java/compare/v1.9.0...v1.10.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.10.2"
34+
implementation "com.deepl.api:deepl-java:1.10.3"
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.2</version>
45+
<version>1.10.3</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.2"
9+
version = "1.10.3"
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.2");
95+
sb.append("deepl-java/1.10.3");
9696
if (sendPlatformInfo) {
9797
sb.append(" (");
9898
Properties props = System.getProperties();

0 commit comments

Comments
 (0)