Skip to content

Commit edd0080

Browse files
committed
updaet readme and changelog for 3.1.1 release.
1 parent 7560c82 commit edd0080

File tree

3 files changed

+32
-3
lines changed

3 files changed

+32
-3
lines changed

ChangeLog.txt

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,32 @@
1+
3.1.1 (2019-6-17)
2+
---------------------------------------------
3+
- Fix Fix protocol and ciphersuite selection to enable TLSv1.2 and TLSv1.1
4+
- Update to Latest API specs:
5+
File namespace:
6+
- Added new ExportInfo struct
7+
- Added new fields (is_downloadable, export_info) to FileMetadata
8+
- Added new include_non_downloadable_files to ListFolderArg
9+
- Added new ExportMetadata, ExportArg, Export Result Structs
10+
- Added new ExportError union
11+
- Added new /export route
12+
13+
Sharing namespace:
14+
- Added password field to LinkAudience
15+
- Added effective_audience and link_access_level fields to LinkPermissions struct
16+
- Updated docstrings for LinkPermissions
17+
- Added audience and access fields to SharedLinkSettings struct
18+
- New LinkAccessLevel and RequestedLinkAccessLevel union
19+
- Added new create_view_link and create_edit_link fields to FileAction union
20+
21+
Team_log namespace:
22+
- New types added
23+
24+
Team_policies namespace:
25+
- New TwoStepVerificationState union
26+
27+
Team_reports namespace:
28+
- New TemporaryFailureReason union added.
29+
130
3.1.0 (2019-5-6)
231
---------------------------------------------
332
- Early Access on Short-live token feature.

ReadMe.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ If you're using Maven, then edit your project's "pom.xml" and add this to the `<
1414
<dependency>
1515
<groupId>com.dropbox.core</groupId>
1616
<artifactId>dropbox-core-sdk</artifactId>
17-
<version>3.1.0</version>
17+
<version>3.1.1</version>
1818
</dependency>
1919
```
2020

@@ -23,7 +23,7 @@ If you are using Gradle, then edit your project's "build.gradle" and add this to
2323
```groovy
2424
dependencies {
2525
// ...
26-
compile 'com.dropbox.core:dropbox-core-sdk:3.1.0'
26+
implementation 'com.dropbox.core:dropbox-core-sdk:3.1.1'
2727
}
2828
```
2929

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.1.0"; //TODO: figure out a consistent way to generate it.
15+
return "3.1.1"; //TODO: figure out a consistent way to generate it.
1616
}
1717
}

0 commit comments

Comments
 (0)