Skip to content

Commit

Permalink
Update version
Browse files Browse the repository at this point in the history
  • Loading branch information
Linus789 committed Jul 10, 2021
1 parent 451b378 commit 58ce3a4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Add the dependency
<dependency>
<groupId>com.github.Linus789</groupId>
<artifactId>DeepLTranslator</artifactId>
<version>v1.0.0</version>
<version>1.1.0</version>
</dependency>
```
### Gradle
Expand All @@ -34,7 +34,7 @@ allprojects {
Add the dependency
```kotlin
dependencies {
implementation 'com.github.Linus789:DeepLTranslator:v1.0.0'
implementation 'com.github.Linus789:DeepLTranslator:1.1.0'
}
```

Expand All @@ -45,7 +45,7 @@ DeepLConfiguration deepLConfiguration = new DeepLConfiguration.Builder()
.setTimeout(Duration.ofSeconds(10))
.setRepetitions(3)
.setRepetitionsDelay(retryNumber -> Duration.ofMillis(3000 + 5000 * retryNumber))
.setTimezone(Timezone.EUROPE_BERLIN)
.setPostProcessing(true)
.build();

DeepLTranslator deepLTranslator = new DeepLTranslator(deepLConfiguration);
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

<groupId>de.linus</groupId>
<artifactId>DeepLTranslator</artifactId>
<version>1.0.0</version>
<version>1.1.0</version>

<properties>
<java.version>1.8</java.version>
Expand Down

0 comments on commit 58ce3a4

Please sign in to comment.