Skip to content

Commit

Permalink
Prepare for release 6.1.0 (#531)
Browse files Browse the repository at this point in the history
Co-authored-by: Walter Dziemianczyk <[email protected]>
  • Loading branch information
wdziemia and Walter Dziemianczyk authored Mar 19, 2024
1 parent 80ae555 commit 23ad93b
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 7 deletions.
5 changes: 3 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)
---------------------------------------------
Expand All @@ -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'
}
```

Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ If you're using Maven, then edit your project's "pom.xml" and add this to the `<
<dependency>
<groupId>com.dropbox.core</groupId>
<artifactId>dropbox-core-sdk</artifactId>
<version>6.0.0</version>
<version>6.1.0</version>
</dependency>
```

Expand All @@ -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'
}
```

Expand Down Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -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/
Expand Down

0 comments on commit 23ad93b

Please sign in to comment.