Skip to content

Commit

Permalink
3.1.3 release
Browse files Browse the repository at this point in the history
  • Loading branch information
jiuyangzhao committed Dec 18, 2019
1 parent 1ad5eb0 commit 6d37fab
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions ChangeLog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
3.1.3 (2019-12-17)
---------------------------------------------
- Fix mobile sign in bug.

3.1.2 (2019-12-14)
---------------------------------------------
- Account namespace:
Expand Down
4 changes: 2 additions & 2 deletions ReadMe.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,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.1.2</version>
<version>3.1.3</version>
</dependency>
```

Expand All @@ -23,7 +23,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.1.2'
implementation 'com.dropbox.core:dropbox-core-sdk:3.1.3'
}
```

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.1.2"; //TODO: figure out a consistent way to generate it.
return "3.1.3"; //TODO: figure out a consistent way to generate it.
}
}

0 comments on commit 6d37fab

Please sign in to comment.