Skip to content

Commit e59e347

Browse files
Increase version to 1.0.1
1 parent 31c646d commit e59e347

4 files changed

Lines changed: 6 additions & 6 deletions

File tree

CHANGELOG.md

Lines changed: 2 additions & 2 deletions
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.0.1] - 2023-01-02
99
### Fixed
1010
* Always send SentenceSplittingMode option in requests.
1111
* [#3](https://github.com/DeepLcom/deepl-java/issues/3) thanks to
@@ -60,7 +60,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
6060
Initial version.
6161

6262

63-
[Unrelased]: https://github.com/DeepLcom/deepl-java/compare/v1.0.0...HEAD
63+
[1.0.1]: https://github.com/DeepLcom/deepl-java/compare/v1.0.0...v1.0.1
6464
[1.0.0]: https://github.com/DeepLcom/deepl-java/compare/v0.2.1...v1.0.0
6565
[0.2.1]: https://github.com/DeepLcom/deepl-java/compare/v0.2.0...v0.2.1
6666
[0.2.0]: https://github.com/DeepLcom/deepl-java/compare/v0.1.3...v0.2.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.0.0"
34+
implementation "com.deepl.api:deepl-java:1.0.1"
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.0.0</version>
45+
<version>1.0.1</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.0.0"
9+
version = "1.0.1"
1010

1111
java {
1212
sourceCompatibility = JavaVersion.VERSION_1_8

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ public Translator(String authKey, TranslatorOptions options) throws IllegalArgum
5555
headers.putAll(options.getHeaders());
5656
}
5757
headers.putIfAbsent("Authorization", "DeepL-Auth-Key " + authKey);
58-
headers.putIfAbsent("User-Agent", "deepl-java/1.0.0");
58+
headers.putIfAbsent("User-Agent", "deepl-java/1.0.1");
5959

6060
this.httpClientWrapper =
6161
new HttpClientWrapper(

0 commit comments

Comments
 (0)