Skip to content

Commit 952f3b0

Browse files
committed
docs: Increase version to 1.3.0
1 parent 3fa28bb commit 952f3b0

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

CHANGELOG.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ 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.3.0] - 2023-06-09
88
### Fixed
99
* Changed document translation to poll the server every 5 seconds. This should greatly reduce observed document translation processing time.
1010
* Fix getUsage request to be a HTTP GET request, not POST.
@@ -84,7 +84,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
8484
Initial version.
8585

8686

87-
[Unreleased]: https://github.com/DeepLcom/deepl-java/compare/v1.2.0...HEAD
87+
[1.3.0]: https://github.com/DeepLcom/deepl-java/compare/v1.2.0...v1.3.0
8888
[1.2.0]: https://github.com/DeepLcom/deepl-java/compare/v1.1.0...v1.2.0
8989
[1.1.0]: https://github.com/DeepLcom/deepl-java/compare/v1.0.1...v1.1.0
9090
[1.0.1]: https://github.com/DeepLcom/deepl-java/compare/v1.0.0...v1.0.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.2.0"
34+
implementation "com.deepl.api:deepl-java:1.3.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.2.0</version>
45+
<version>1.3.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.2.0"
9+
version = "1.3.0"
1010

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

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ public Translator(String authKey) throws IllegalArgumentException {
8282
*/
8383
private String constructUserAgentString(boolean sendPlatformInfo, AppInfo appInfo) {
8484
StringBuilder sb = new StringBuilder();
85-
sb.append("deepl-java/1.2.0");
85+
sb.append("deepl-java/1.3.0");
8686
if (sendPlatformInfo) {
8787
sb.append(" (");
8888
Properties props = System.getProperties();

0 commit comments

Comments
 (0)