Skip to content

Commit dd3b6dc

Browse files
committed
docs: Increase version to 1.10.1
1 parent 8603857 commit dd3b6dc

File tree

4 files changed

+12
-5
lines changed

4 files changed

+12
-5
lines changed

CHANGELOG.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1111
<!-- * add to here -->
1212

1313

14+
## [1.10.1] - 2025-06-18
15+
### Fixed
16+
* Fixed `DeepLClient::deleteMultilingualGlossary(String glossaryId)` being package private, made it public instead.
17+
* Thanks to [MTSxoff](https://github.com/MTSxoff) for the report in [#68](https://github.com/DeepLcom/deepl-java/issues/68) and the fix in [#69](https://github.com/DeepLcom/deepl-java/pull/69).
18+
19+
1420
## [1.10.0] - 2025-04-30
1521
### Added
1622
* Added support for the /v3 Multilingual Glossary APIs in the client library
@@ -166,7 +172,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
166172
Initial version.
167173

168174

169-
[Unreleased]: https://github.com/DeepLcom/deepl-java/compare/v1.10.0...HEAD
175+
[Unreleased]: https://github.com/DeepLcom/deepl-java/compare/v1.10.1...HEAD
176+
[1.10.1]: https://github.com/DeepLcom/deepl-java/compare/v1.10.0...v1.10.1
170177
[1.10.0]: https://github.com/DeepLcom/deepl-java/compare/v1.9.0...v1.10.0
171178
[1.9.0]: https://github.com/DeepLcom/deepl-java/compare/v1.8.1...v1.9.0
172179
[1.8.1]: https://github.com/DeepLcom/deepl-java/compare/v1.8.0...v1.8.1

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.10.0"
34+
implementation "com.deepl.api:deepl-java:1.10.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.10.0</version>
45+
<version>1.10.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.10.0"
9+
version = "1.10.1"
1010

1111
val sharedManifest = the<JavaPluginConvention>().manifest {
1212
attributes (

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ public Translator(String authKey) throws IllegalArgumentException {
8888
*/
8989
private String constructUserAgentString(boolean sendPlatformInfo, AppInfo appInfo) {
9090
StringBuilder sb = new StringBuilder();
91-
sb.append("deepl-java/1.10.0");
91+
sb.append("deepl-java/1.10.1");
9292
if (sendPlatformInfo) {
9393
sb.append(" (");
9494
Properties props = System.getProperties();

0 commit comments

Comments
 (0)