Skip to content

Commit f0bee4a

Browse files
authored
Prepare SNAPSHOT for 5.3.0, so we can release a stable afterwards. (#403)
1 parent 8d0bc73 commit f0bee4a

File tree

4 files changed

+11
-5
lines changed

4 files changed

+11
-5
lines changed

ChangeLog.txt renamed to ChangeLog.md

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
1-
5.2.0 (2022-4-04)
1+
## 5.3.0-SNAPSHOT (2022-07-20) [Milestone](https://github.com/dropbox/dropbox-sdk-java/milestone/1?closed=1)
2+
---------------------------------------------
3+
- Update dropbox-api-spec to point to more recent version (July 13, 2022) [#400](https://github.com/dropbox/dropbox-sdk-java/pull/400)
4+
- The generateStone Gradle Task now supports Gradle Configuration Caching [#390](https://github.com/dropbox/dropbox-sdk-java/pull/390)
5+
- API Backwards Compatibility Fix - Won't crash when new types are returned from API [#395](https://github.com/dropbox/dropbox-sdk-java/pull/395)
6+
- Version Bumps in the Dropbox Android Sample Apps [#391](https://github.com/dropbox/dropbox-sdk-java/pull/391)
7+
8+
5.2.0 (2022-04-04)
29
---------------------------------------------
3-
- Update dropbox-api-spec to point to more recent version (Feb 2022)
410
- Update jackson-core to 2.7.9
511

612
5.1.1 (2021-12-17)

RELEASING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Releasing
33

44
1. Update the top level [gradle.properties](gradle.properties) to a non-SNAPSHOT version.
55
2. Update [DbxSdkVersion.java](DbxSdkVersion.java) to a non-SNAPSHOT version.
6-
3. Update the [ChangeLog.txt](ChangeLog.txt) for the impending release.
6+
3. Update the [ChangeLog.md](ChangeLog.md) for the impending release.
77
4. Update the [ReadMe.md](ReadMe.md) with the new version.
88
5. `git commit -am "Prepare for release X.Y.Z"` (where X.Y.Z is the new version)
99
6. `git tag -a vX.Y.Z -m "Version X.Y.Z"` (where X.Y.Z is the new version)

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# POM
22
GROUP = com.dropbox.core
3-
VERSION_NAME=5.2.1-SNAPSHOT
3+
VERSION_NAME=5.3.0-SNAPSHOT
44

55
POM_ARTIFACT_ID = dropbox-core-sdk
66
POM_NAME = Dropbox SDK Java

src/main/java/com/dropbox/core/DbxSdkVersion.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,6 @@ public class DbxSdkVersion
1212
// https://github.com/dropbox/dropbox-sdk-java/issues/357
1313
private static String loadVersion()
1414
{
15-
return "5.2.1-SNAPSHOT";
15+
return "5.3.0-SNAPSHOT";
1616
}
1717
}

0 commit comments

Comments
 (0)