Skip to content

Commit 7aa1bcd

Browse files
JanEbbingdaniel-jones-dev
authored andcommitted
docs: Increase version to 1.1.0
1 parent a8c2bc7 commit 7aa1bcd

File tree

5 files changed

+7
-11
lines changed

5 files changed

+7
-11
lines changed

CHANGELOG.md

+2-6
Original file line numberDiff line numberDiff line change
@@ -4,20 +4,16 @@ All notable changes to this project will be documented in this file.
44
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

7-
## [Unreleased]
7+
## [1.1.0] - 2023-01-26
88
### Added
99
* Add example maven project using this library.
1010
* New languages available: Korean (`'ko'`) and Norwegian (bokmål) (`'nb'`). Add
1111
language code constants and tests.
1212

1313
Note: older library versions also support the new languages, this update only
1414
adds new code constants.
15-
### Changed
16-
### Deprecated
17-
### Removed
1815
### Fixed
1916
* Send Formality options in API requests even if it is default.
20-
### Security
2117

2218

2319
## [1.0.1] - 2023-01-02
@@ -75,7 +71,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7571
Initial version.
7672

7773

78-
[Unreleased]: https://github.com/DeepLcom/deepl-java/compare/v1.0.1...HEAD
74+
[1.1.0]: https://github.com/DeepLcom/deepl-java/compare/v1.0.1...v1.1.0
7975
[1.0.1]: https://github.com/DeepLcom/deepl-java/compare/v1.0.0...v1.0.1
8076
[1.0.0]: https://github.com/DeepLcom/deepl-java/compare/v0.2.1...v1.0.0
8177
[0.2.1]: https://github.com/DeepLcom/deepl-java/compare/v0.2.0...v0.2.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.0.1"
34+
implementation "com.deepl.api:deepl-java:1.1.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.0.1</version>
45+
<version>1.1.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.0.1"
9+
version = "1.1.0"
1010

1111
java {
1212
sourceCompatibility = JavaVersion.VERSION_1_8

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

+1-1
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.1");
58+
headers.putIfAbsent("User-Agent", "deepl-java/1.1.0");
5959

6060
this.httpClientWrapper =
6161
new HttpClientWrapper(

examples/maven/deepl-test-app/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
<dependency>
2424
<groupId>com.deepl.api</groupId>
2525
<artifactId>deepl-java</artifactId>
26-
<version>1.0.1</version>
26+
<version>[1.0,2.0)</version>
2727
</dependency>
2828
</dependencies>
2929

0 commit comments

Comments
 (0)