Skip to content

Commit eb1e6fc

Browse files
Increase version to 0.1.1
1 parent 8c62484 commit eb1e6fc

File tree

4 files changed

+10
-4
lines changed

4 files changed

+10
-4
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,14 @@ 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+
## [0.1.1] - 2022-09-08
9+
### Fixed
10+
* Fix CI publishing step.
11+
12+
813
## [0.1.0] - 2022-09-08
914
Initial version.
1015

1116

17+
[0.1.1]: https://github.com/DeepLcom/deepl-java/compare/v0.1.0...v0.1.1
1218
[0.1.0]: https://github.com/DeepLcom/deepl-java/releases/tag/v0.1.0

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ Java 1.8 or later.
2929
Add this dependency to your project's build file:
3030

3131
```
32-
implementation "com.deepl.api:deepl-java:0.1.0"
32+
implementation "com.deepl.api:deepl-java:0.1.1"
3333
```
3434

3535
### Maven users
@@ -40,7 +40,7 @@ Add this dependency to your project's POM:
4040
<dependency>
4141
<groupId>com.deepl.api</groupId>
4242
<artifactId>deepl-java</artifactId>
43-
<version>0.1.0</version>
43+
<version>0.1.1</version>
4444
</dependency>
4545
```
4646

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 = "0.1.0"
9+
version = "0.1.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
@@ -54,7 +54,7 @@ public Translator(String authKey, TranslatorOptions options) throws IllegalArgum
5454
headers.putAll(options.getHeaders());
5555
}
5656
headers.putIfAbsent("Authorization", "DeepL-Auth-Key " + authKey);
57-
headers.putIfAbsent("User-Agent", "deepl-java/0.1.0");
57+
headers.putIfAbsent("User-Agent", "deepl-java/0.1.1");
5858

5959
this.httpClientWrapper =
6060
new HttpClientWrapper(

0 commit comments

Comments
 (0)