Skip to content

Commit 9f78157

Browse files
committed
docs: Increase version to 1.5.0
1 parent cb701b7 commit 9f78157

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.5.0] - 2024-04-10
99
### Added
1010
* New language available: Arabic (MSA) (`'ar'`). Add language code constants and tests.
1111

@@ -104,7 +104,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
104104
Initial version.
105105

106106

107-
[Unreleased]: https://github.com/DeepLcom/deepl-java/compare/v1.4.0...HEAD
107+
[1.5.0]: https://github.com/DeepLcom/deepl-java/compare/v1.4.0...v1.5.0
108108
[1.4.0]: https://github.com/DeepLcom/deepl-java/compare/v1.3.0...v1.4.0
109109
[1.3.0]: https://github.com/DeepLcom/deepl-java/compare/v1.2.0...v1.3.0
110110
[1.2.0]: https://github.com/DeepLcom/deepl-java/compare/v1.1.0...v1.2.0

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.4.0"
34+
implementation "com.deepl.api:deepl-java:1.5.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.4.0</version>
45+
<version>1.5.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.4.0"
9+
version = "1.5.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
@@ -82,7 +82,7 @@ public Translator(String authKey) throws IllegalArgumentException {
8282
*/
8383
private String constructUserAgentString(boolean sendPlatformInfo, AppInfo appInfo) {
8484
StringBuilder sb = new StringBuilder();
85-
sb.append("deepl-java/1.4.0");
85+
sb.append("deepl-java/1.5.0");
8686
if (sendPlatformInfo) {
8787
sb.append(" (");
8888
Properties props = System.getProperties();

0 commit comments

Comments
 (0)