From 60a804113e9698c51c8cbd90959e0c6548fdc072 Mon Sep 17 00:00:00 2001 From: Sam Edwards Date: Fri, 14 Oct 2022 10:48:31 -0400 Subject: [PATCH 1/2] Prepare for release 5.4.3 --- CHANGELOG.md | 4 ++++ .../src/main/java/com/dropbox/core/DbxSdkVersion.java | 2 +- gradle.properties | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f88a79802..7ef969064 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## 5.4.3 (2022-10-14) +--------------------------------------------- +- Fix: [Make Kotlin optional in OSGI Import-Package statement](https://github.com/dropbox/dropbox-sdk-java/pull/473) + ## 5.4.2 (2022-10-03) --------------------------------------------- - Update dropbox-api-spec to point to more recent version (Sept 01, 2022) [#431](https://github.com/dropbox/dropbox-sdk-java/pull/431) diff --git a/dropbox-sdk-java/src/main/java/com/dropbox/core/DbxSdkVersion.java b/dropbox-sdk-java/src/main/java/com/dropbox/core/DbxSdkVersion.java index bdb3ca094..80c343f49 100644 --- a/dropbox-sdk-java/src/main/java/com/dropbox/core/DbxSdkVersion.java +++ b/dropbox-sdk-java/src/main/java/com/dropbox/core/DbxSdkVersion.java @@ -12,6 +12,6 @@ public class DbxSdkVersion // https://github.com/dropbox/dropbox-sdk-java/issues/357 private static String loadVersion() { - return "5.4.3-SNAPSHOT"; + return "5.4.3"; } } diff --git a/gradle.properties b/gradle.properties index 6c42163ac..1ee32c483 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,6 +1,6 @@ # POM GROUP = com.dropbox.core -VERSION_NAME=5.4.3-SNAPSHOT +VERSION_NAME=5.4.3 POM_NAME = Dropbox SDK Java POM_DESCRIPTION = A Java library to access Dropbox's HTTP-based Core API v2. From ff013e55f20cdd87d2b8f21c86a17634cf667392 Mon Sep 17 00:00:00 2001 From: Sam Edwards Date: Fri, 14 Oct 2022 10:52:23 -0400 Subject: [PATCH 2/2] Updating readme with new version. --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 251f4fd0b..897f9c284 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ A Java library to access [Dropbox's HTTP-based Core API v2](https://www.dropbox. License: [MIT](License.txt) -Documentation: [Javadocs](https://dropbox.github.io/dropbox-sdk-java/api-docs/v5.4.2/) +Documentation: [Javadocs](https://dropbox.github.io/dropbox-sdk-java/api-docs/v5.4.3/) ## Setup @@ -24,7 +24,7 @@ If you're using Maven, then edit your project's "pom.xml" and add this to the `< com.dropbox.core dropbox-core-sdk - 5.4.2 + 5.4.3 ``` @@ -33,7 +33,7 @@ If you are using Gradle, then edit your project's "build.gradle" and add this to ```groovy dependencies { // ... - implementation 'com.dropbox.core:dropbox-core-sdk:5.4.2' + implementation 'com.dropbox.core:dropbox-core-sdk:5.4.3' } ```