Skip to content

Commit 9087e77

Browse files
committed
docs: Increase version to 1.8.0
1 parent d826569 commit 9087e77

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

CHANGELOG.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ 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

8-
## [Unreleased]
8+
## [1.8.0] - 2025-01-17
99
### Added
1010
* Added support for the Write API in the client library, the implementation
1111
can be found in the `DeepLClient` class. Please refer to the README for usage
@@ -135,7 +135,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
135135
Initial version.
136136

137137

138-
[Unreleased]: https://github.com/DeepLcom/deepl-java/compare/v1.7.0...HEAD
138+
[1.8.0]: https://github.com/DeepLcom/deepl-java/compare/v1.7.0...v1.8.0
139139
[1.7.0]: https://github.com/DeepLcom/deepl-java/compare/v1.6.0...v1.7.0
140140
[1.6.0]: https://github.com/DeepLcom/deepl-java/compare/v1.5.1...v1.6.0
141141
[1.5.1]: https://github.com/DeepLcom/deepl-java/compare/v1.5.0...v1.5.1

README.md

+2-2
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.7.0"
34+
implementation "com.deepl.api:deepl-java:1.8.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.7.0</version>
45+
<version>1.8.0</version>
4646
</dependency>
4747
```
4848

deepl-java/build.gradle.kts

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ plugins {
66
}
77

88
group = "com.deepl.api"
9-
version = "1.7.0"
9+
version = "1.8.0"
1010

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

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ public Translator(String authKey) throws IllegalArgumentException {
8585
*/
8686
private String constructUserAgentString(boolean sendPlatformInfo, AppInfo appInfo) {
8787
StringBuilder sb = new StringBuilder();
88-
sb.append("deepl-java/1.7.0");
88+
sb.append("deepl-java/1.8.0");
8989
if (sendPlatformInfo) {
9090
sb.append(" (");
9191
Properties props = System.getProperties();

0 commit comments

Comments
 (0)