Skip to content

Commit 3cba577

Browse files
committed
3.0.11 release.
1 parent a6eef6f commit 3cba577

File tree

5 files changed

+29
-4
lines changed

5 files changed

+29
-4
lines changed

ChangeLog.txt

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,28 @@
1+
3.0.11 (2018-12-12)
2+
---------------------------------------------
3+
- Update to Latest API specs:
4+
- Common Namespace:
5+
- Allow DisplayNameLegacy to support a name of zero chars
6+
- Force matching dot character in alias EmailAddress
7+
- File_properties namespace:
8+
- Doesn’t allow app folder app to access file property endpoints.
9+
- Files namespace:
10+
- Create copy_batch:2 and move_batch:2 endpoints. Deprecate existing copy_batch and move_batch.
11+
- Contacts namespace:
12+
- New namespace
13+
- New routes: delete_manual_contacts and delete_manual_contacts_batch
14+
- New argument structs for new routes
15+
- Sharing namespace:
16+
- Add no_one option to LinkAudience union
17+
- Sharing_files namespace:
18+
- Doesn’t allow app folder app to access sharing files endpoints.
19+
- Teams namespace:
20+
- Add is_disconnected boolean to RemovedStatus struct
21+
- Add error response type to namespace/list route
22+
- Only Team apps with Team member file access can access team/properties endpoints.
23+
- Team_log namespace:
24+
- New event types added
25+
126
3.0.10 (2018-10-11)
227
---------------------------------------------
328
- Update to Latest API specs:

ReadMe.md

Lines changed: 1 addition & 1 deletion
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.0.10</version>
17+
<version>3.0.11</version>
1818
</dependency>
1919
```
2020

release.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ def verifySdkVersion(deployment) {
4040
def jar = new java.util.jar.JarInputStream(stream)
4141
def entry = jar.getNextJarEntry()
4242
while (entry != null) {
43-
if (entry.getName().equals("sdk-version.txt")) {
43+
if (entry.getName().equals("com/dropbox/core/sdk-version.txt")) {
4444
def version = jar.text.trim();
4545
if (!(version ==~ /\d+\.\d+\.\d+/)) {
4646
throw new GradleException("SDK version not in semantic versioning format: " + version +

0 commit comments

Comments
 (0)