From 58ce3a4ffdfac0d21c58bd5b0cd20d2b99f84d2f Mon Sep 17 00:00:00 2001 From: Linus789 Date: Sat, 10 Jul 2021 17:02:36 +0200 Subject: [PATCH] Update version --- README.md | 6 +++--- pom.xml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index e2f2fc2..53149eb 100755 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ Add the dependency com.github.Linus789 DeepLTranslator - v1.0.0 + 1.1.0 ``` ### Gradle @@ -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' } ``` @@ -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); diff --git a/pom.xml b/pom.xml index 2104bd1..34f5ba0 100755 --- a/pom.xml +++ b/pom.xml @@ -9,7 +9,7 @@ de.linus DeepLTranslator - 1.0.0 + 1.1.0 1.8