diff --git a/CHANGELOG.md b/CHANGELOG.md index 8881b6ff8..a6cba572a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,7 @@ -6.1.0 (202X-XX-XX) +6.1.0 (2024-03-19) --------------------------------------------- - [#527](https://github.com/dropbox/dropbox-sdk-java/pull/527) Adds nullability annotations to data models for improved interop with Kotlin +- [#530](https://github.com/dropbox/dropbox-sdk-java/pull/530) Fix StoneTask cache misses 6.0.0 (2023-11-30) --------------------------------------------- @@ -9,7 +10,7 @@ To migrate, add the following to your dependencies block: ```@groovy dependencies { - implementation 'com.dropbox.core:dropbox-android-sdk:6.0.0' + implementation 'com.dropbox.core:dropbox-android-sdk:6.1.0' } ``` diff --git a/README.md b/README.md index 93c79a0dd..6f9104a55 100644 --- a/README.md +++ b/README.md @@ -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 - 6.0.0 + 6.1.0 ``` @@ -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:6.0.0' + implementation 'com.dropbox.core:dropbox-core-sdk:6.1.0' } ``` @@ -268,8 +268,8 @@ Edit your project's "build.gradle" and add the following to the dependencies sec ``` dependencies { // ... - implementation 'com.dropbox.core:dropbox-core-sdk:6.0.0' - implementation 'com.dropbox.core:dropbox-android-sdk:6.0.0' + implementation 'com.dropbox.core:dropbox-core-sdk:6.1.0' + implementation 'com.dropbox.core:dropbox-android-sdk:6.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. diff --git a/gradle.properties b/gradle.properties index d78a1f296..920089238 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,6 +1,6 @@ # POM GROUP = com.dropbox.core -VERSION_NAME=6.1.0-SNAPSHOT +VERSION_NAME=6.1.0 POM_URL = https://github.com/dropbox/dropbox-sdk-java/ POM_SCM_URL = https://github.com/dropbox/dropbox-sdk-java/