Skip to content

Commit

Permalink
Prepare for release 5.4.6
Browse files Browse the repository at this point in the history
  • Loading branch information
Jay Palacio committed Oct 3, 2023
1 parent 88233c7 commit 00005e8
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 8 deletions.
8 changes: 5 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
## 5.4.6
## 5.4.6 (2023-10-03)
- Added better error messaging when trying to build the project without submodules initialized.
- Removed obsolete javadoc flag
- Updated test dependencies
- Removed redundant gradle wrappers
- Downgrade Jackson to maintain compatibility with lower Android API levels
- Upgrade Gradle to 7.6.2
- Downgrade Jackson to maintain compatibility with lower Android API levels.
- Upgrade Gradle to 7.6.2, fixes [#511](https://github.com/dropbox/dropbox-sdk-java/issues/511)
- Update Stone submodule
- StoneTask is now @CacheableTask

## 5.4.5 (2023-05-16)
- Update jackson-core to 2.15.0 [#492](https://github.com/dropbox/dropbox-sdk-java/issues/476)
Expand Down
4 changes: 2 additions & 2 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>5.4.5</version>
<version>5.4.6</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:5.4.5'
implementation 'com.dropbox.core:dropbox-core-sdk:5.4.6'
}
```

Expand Down
4 changes: 2 additions & 2 deletions RELEASING.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ Please follow the steps in each one of the following sections to complete a rele

## Merge the Release to Trigger Publishing to Maven Central
1. Update the top level [gradle.properties](gradle.properties) to a non-SNAPSHOT version.
2. Update [DbxSdkVersion.java](DbxSdkVersion.java) to a non-SNAPSHOT version.
2. Update [DbxSdkVersion.java](DbxSdkVersion.java) to a non-SNAPSHOT version with `./gradlew :dropbox-sdk-java:versionWriterTask `
3. Update the [CHANGELOG.md](CHANGELOG.md) for the impending release.
4. Update the [README.md](README.md) with the new version.
5. `git commit -am "Prepare for release X.Y.Z"` (where X.Y.Z is the new version)
Expand All @@ -24,7 +24,7 @@ Please follow the steps in each one of the following sections to complete a rele
## Preparing For Next Snapshot
1. Checkout the latest code from `main` into a new branch.
2. Update the top level [gradle.properties](gradle.properties) to the next `-SNAPSHOT` version.
3. Update [DbxSdkVersion.java](DbxSdkVersion.java) to the next `-SNAPSHOT` version.
3. Update [DbxSdkVersion.java](DbxSdkVersion.java) to the next `-SNAPSHOT` version with `./gradlew :dropbox-sdk-java:versionWriterTask`
4. `git commit -am "Prepare next development version"`
5. Create a PR with this commit and merge it.

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=5.4.6-SNAPSHOT
VERSION_NAME=5.4.6

POM_NAME = Dropbox SDK Java
POM_DESCRIPTION = A Java library to access Dropbox's HTTP-based Core API v2.
Expand Down

0 comments on commit 00005e8

Please sign in to comment.