Skip to content

Commit 63536dc

Browse files
Increase version to 1.0.0
1 parent cd8dbec commit 63536dc

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

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.0] - 2022-12-15
99
### Added
1010
* Add support for glossary management functions.
1111
### Changed
@@ -53,7 +53,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
5353
Initial version.
5454

5555

56-
[Unreleased]: https://github.com/DeepLcom/deepl-java/compare/v0.2.1...HEAD
56+
[1.0.0]: https://github.com/DeepLcom/deepl-java/compare/v0.2.1...v1.0.0
5757
[0.2.1]: https://github.com/DeepLcom/deepl-java/compare/v0.2.0...v0.2.1
5858
[0.2.0]: https://github.com/DeepLcom/deepl-java/compare/v0.1.3...v0.2.0
5959
[0.1.3]: https://github.com/DeepLcom/deepl-java/compare/v0.1.2...v0.1.3

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:0.2.1"
34+
implementation "com.deepl.api:deepl-java:1.0.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>0.2.1</version>
45+
<version>1.0.0</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 = "0.2.1"
9+
version = "1.0.0"
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/0.2.1");
58+
headers.putIfAbsent("User-Agent", "deepl-java/1.0.0");
5959

6060
this.httpClientWrapper =
6161
new HttpClientWrapper(

0 commit comments

Comments
 (0)