Skip to content

Commit 446134b

Browse files
authored
Merge pull request #308 from dropbox/bump-to-4.0.0
ChangeLog/ReadMe: Update for 4.0.0 release
2 parents ff7ec40 + eb9d8fd commit 446134b

3 files changed

Lines changed: 10 additions & 5 deletions

File tree

ChangeLog.txt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
4.0.0 (2021-03-29)
2+
---------------------------------------------
3+
- update Java tests to use Google's Truth library
4+
- bump target Java version from 6 to 8
5+
16
3.2.1 (2021-03-29)
27
---------------------------------------------
38
- revert Java version bump (back to Java 6)

ReadMe.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Dropbox Core SDK for Java 6+
1+
# Dropbox Core SDK for Java 8+
22

33
![GitHub](https://img.shields.io/github/license/dropbox/dropbox-sdk-java)
44
![Maven Central](https://img.shields.io/maven-central/v/com.dropbox.core/dropbox-core-sdk)
@@ -8,7 +8,7 @@ A Java library to access [Dropbox's HTTP-based Core API v2](https://www.dropbox.
88

99
License: [MIT](License.txt)
1010

11-
Documentation: [Javadocs](https://dropbox.github.io/dropbox-sdk-java/api-docs/v3.2.x/)
11+
Documentation: [Javadocs](https://dropbox.github.io/dropbox-sdk-java/api-docs/v4.0.x/)
1212

1313
## Setup
1414

@@ -18,7 +18,7 @@ If you're using Maven, then edit your project's "pom.xml" and add this to the `<
1818
<dependency>
1919
<groupId>com.dropbox.core</groupId>
2020
<artifactId>dropbox-core-sdk</artifactId>
21-
<version>3.2.1</version>
21+
<version>4.0.0</version>
2222
</dependency>
2323
```
2424

@@ -27,7 +27,7 @@ If you are using Gradle, then edit your project's "build.gradle" and add this to
2727
```groovy
2828
dependencies {
2929
// ...
30-
implementation 'com.dropbox.core:dropbox-core-sdk:3.2.1'
30+
implementation 'com.dropbox.core:dropbox-core-sdk:4.0.0'
3131
}
3232
```
3333

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

1313
private static String loadVersion()
1414
{
15-
return "3.2.1"; //TODO: figure out a consistent way to generate it.
15+
return "4.0.0"; //TODO: figure out a consistent way to generate it.
1616
}
1717
}

0 commit comments

Comments
 (0)