From 8e8214a75c9ef47f7c99f482b69707bbd54699db Mon Sep 17 00:00:00 2001 From: Josh Feinberg <15068619+joshafeinberg@users.noreply.github.com> Date: Tue, 16 Jun 2026 16:23:28 -0500 Subject: [PATCH] Prepare for release 7.1.0 --- CHANGELOG.md | 10 ++++++++++ README.md | 9 ++++----- gradle.properties | 2 +- 3 files changed, 15 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index bea01703d..1d80275df 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,13 @@ +7.1.0 (2026-06-16) +--------------------------------------------- +- Update generated SDK code from the latest Dropbox API spec. +- [#565](https://github.com/dropbox/dropbox-sdk-java/pull/565) Add `DbxRequest` API support. +- [#557](https://github.com/dropbox/dropbox-sdk-java/pull/557) Mark `getUserMessage` as nullable. +- [#556](https://github.com/dropbox/dropbox-sdk-java/pull/556) Raise the minimum Android version to Android 8 (SDK 26). +- [#545](https://github.com/dropbox/dropbox-sdk-java/pull/545) Support Android SDK 35. +- [#547](https://github.com/dropbox/dropbox-sdk-java/pull/547) Fix Stone task output stability across machines. +- Fix ProGuard metadata assertions. + 7.0.0 (2024-04-29) --------------------------------------------- - [#537](https://github.com/dropbox/dropbox-sdk-java/pull/537) Remove cert pinning from the SDK diff --git a/README.md b/README.md index 500750209..05c45b9e8 100644 --- a/README.md +++ b/README.md @@ -30,7 +30,7 @@ If you're using Maven, then edit your project's "pom.xml" and add this to the `< com.dropbox.core dropbox-core-sdk - 7.0.0 + 7.1.0 ``` @@ -39,7 +39,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:7.0.0' + implementation 'com.dropbox.core:dropbox-core-sdk:7.1.0' } ``` @@ -274,8 +274,8 @@ Edit your project's "build.gradle" and add the following to the dependencies sec ``` dependencies { // ... - implementation 'com.dropbox.core:dropbox-core-sdk:7.0.0' - implementation 'com.dropbox.core:dropbox-android-sdk:7.0.0' + implementation 'com.dropbox.core:dropbox-core-sdk:7.1.0' + implementation 'com.dropbox.core:dropbox-android-sdk:7.1.0' } ``` If you leverage jettifier and see the following errors then please add `android.jetifier.ignorelist = jackson-core,fastdoubleparser` to your `gradle.properties` file. @@ -440,4 +440,3 @@ OkHttpClient httpClient = OkHttpRequestor.defaultOkHttpClient().clone() .setCertificatePinner(myCertificatePinner) .build(); ``` - diff --git a/gradle.properties b/gradle.properties index 6a42913ce..8586c49d6 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,6 +1,6 @@ # POM GROUP = com.dropbox.core -VERSION_NAME=7.1.0-SNAPSHOT +VERSION_NAME=7.1.0 POM_URL = https://github.com/dropbox/dropbox-sdk-java/ POM_SCM_URL = https://github.com/dropbox/dropbox-sdk-java/