diff --git a/ChangeLog.txt b/ChangeLog.txt index 023a11163..1496860a8 100644 --- a/ChangeLog.txt +++ b/ChangeLog.txt @@ -1,3 +1,8 @@ +4.0.0 (2021-03-29) +--------------------------------------------- +- update Java tests to use Google's Truth library +- bump target Java version from 6 to 8 + 3.2.1 (2021-03-29) --------------------------------------------- - revert Java version bump (back to Java 6) diff --git a/ReadMe.md b/ReadMe.md index ccdf1e67f..4c48fc8ac 100644 --- a/ReadMe.md +++ b/ReadMe.md @@ -1,4 +1,4 @@ -# Dropbox Core SDK for Java 6+ +# Dropbox Core SDK for Java 8+ ![GitHub](https://img.shields.io/github/license/dropbox/dropbox-sdk-java) ![Maven Central](https://img.shields.io/maven-central/v/com.dropbox.core/dropbox-core-sdk) @@ -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/v3.2.x/) +Documentation: [Javadocs](https://dropbox.github.io/dropbox-sdk-java/api-docs/v4.0.x/) ## Setup @@ -18,7 +18,7 @@ If you're using Maven, then edit your project's "pom.xml" and add this to the `< com.dropbox.core dropbox-core-sdk - 3.2.1 + 4.0.0 ``` @@ -27,7 +27,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:3.2.1' + implementation 'com.dropbox.core:dropbox-core-sdk:4.0.0' } ``` diff --git a/src/main/java/com/dropbox/core/DbxSdkVersion.java b/src/main/java/com/dropbox/core/DbxSdkVersion.java index f8c196429..ff57e2379 100644 --- a/src/main/java/com/dropbox/core/DbxSdkVersion.java +++ b/src/main/java/com/dropbox/core/DbxSdkVersion.java @@ -12,6 +12,6 @@ public class DbxSdkVersion private static String loadVersion() { - return "3.2.1"; //TODO: figure out a consistent way to generate it. + return "4.0.0"; //TODO: figure out a consistent way to generate it. } }