Skip to content

Commit

Permalink
Merge pull request #308 from dropbox/bump-to-4.0.0
Browse files Browse the repository at this point in the history
ChangeLog/ReadMe: Update for 4.0.0 release
  • Loading branch information
lchen8 authored Mar 30, 2021
2 parents ff7ec40 + eb9d8fd commit 446134b
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 5 deletions.
5 changes: 5 additions & 0 deletions ChangeLog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
4.0.0 (2021-03-29)
---------------------------------------------
- update Java tests to use Google's Truth library
- bump target Java version from 6 to 8

3.2.1 (2021-03-29)
---------------------------------------------
- revert Java version bump (back to Java 6)
Expand Down
8 changes: 4 additions & 4 deletions ReadMe.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Dropbox Core SDK for Java 6+
# Dropbox Core SDK for Java 8+

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

License: [MIT](License.txt)

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

## Setup

Expand All @@ -18,7 +18,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>3.2.1</version>
<version>4.0.0</version>
</dependency>
```

Expand All @@ -27,7 +27,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:3.2.1'
implementation 'com.dropbox.core:dropbox-core-sdk:4.0.0'
}
```

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

private static String loadVersion()
{
return "3.2.1"; //TODO: figure out a consistent way to generate it.
return "4.0.0"; //TODO: figure out a consistent way to generate it.
}
}

0 comments on commit 446134b

Please sign in to comment.