Skip to content

Commit

Permalink
Prepare SNAPSHOT for 5.3.0, so we can release a stable afterwards. (#403
Browse files Browse the repository at this point in the history
)
  • Loading branch information
handstandsam authored Jul 20, 2022
1 parent 8d0bc73 commit f0bee4a
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 5 deletions.
10 changes: 8 additions & 2 deletions ChangeLog.txt → ChangeLog.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
5.2.0 (2022-4-04)
## 5.3.0-SNAPSHOT (2022-07-20) [Milestone](https://github.com/dropbox/dropbox-sdk-java/milestone/1?closed=1)
---------------------------------------------
- Update dropbox-api-spec to point to more recent version (July 13, 2022) [#400](https://github.com/dropbox/dropbox-sdk-java/pull/400)
- The generateStone Gradle Task now supports Gradle Configuration Caching [#390](https://github.com/dropbox/dropbox-sdk-java/pull/390)
- API Backwards Compatibility Fix - Won't crash when new types are returned from API [#395](https://github.com/dropbox/dropbox-sdk-java/pull/395)
- Version Bumps in the Dropbox Android Sample Apps [#391](https://github.com/dropbox/dropbox-sdk-java/pull/391)

5.2.0 (2022-04-04)
---------------------------------------------
- Update dropbox-api-spec to point to more recent version (Feb 2022)
- Update jackson-core to 2.7.9

5.1.1 (2021-12-17)
Expand Down
2 changes: 1 addition & 1 deletion RELEASING.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Releasing

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.
3. Update the [ChangeLog.txt](ChangeLog.txt) for the impending release.
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)
6. `git tag -a vX.Y.Z -m "Version X.Y.Z"` (where X.Y.Z is the new version)
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.2.1-SNAPSHOT
VERSION_NAME=5.3.0-SNAPSHOT

POM_ARTIFACT_ID = dropbox-core-sdk
POM_NAME = Dropbox SDK Java
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/dropbox/core/DbxSdkVersion.java
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@ public class DbxSdkVersion
// https://github.com/dropbox/dropbox-sdk-java/issues/357
private static String loadVersion()
{
return "5.2.1-SNAPSHOT";
return "5.3.0-SNAPSHOT";
}
}

0 comments on commit f0bee4a

Please sign in to comment.