Skip to content

Commit

Permalink
3.0.11 release.
Browse files Browse the repository at this point in the history
  • Loading branch information
jiuyangzhao committed Dec 12, 2018
1 parent a6eef6f commit 3cba577
Show file tree
Hide file tree
Showing 5 changed files with 29 additions and 4 deletions.
25 changes: 25 additions & 0 deletions ChangeLog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,28 @@
3.0.11 (2018-12-12)
---------------------------------------------
- Update to Latest API specs:
- Common Namespace:
- Allow DisplayNameLegacy to support a name of zero chars
- Force matching dot character in alias EmailAddress
- File_properties namespace:
- Doesn’t allow app folder app to access file property endpoints.
- Files namespace:
- Create copy_batch:2 and move_batch:2 endpoints. Deprecate existing copy_batch and move_batch.
- Contacts namespace:
- New namespace
- New routes: delete_manual_contacts and delete_manual_contacts_batch
- New argument structs for new routes
- Sharing namespace:
- Add no_one option to LinkAudience union
- Sharing_files namespace:
- Doesn’t allow app folder app to access sharing files endpoints.
- Teams namespace:
- Add is_disconnected boolean to RemovedStatus struct
- Add error response type to namespace/list route
- Only Team apps with Team member file access can access team/properties endpoints.
- Team_log namespace:
- New event types added

3.0.10 (2018-10-11)
---------------------------------------------
- Update to Latest API specs:
Expand Down
2 changes: 1 addition & 1 deletion 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.0.10</version>
<version>3.0.11</version>
</dependency>
```

Expand Down
2 changes: 1 addition & 1 deletion release.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ def verifySdkVersion(deployment) {
def jar = new java.util.jar.JarInputStream(stream)
def entry = jar.getNextJarEntry()
while (entry != null) {
if (entry.getName().equals("sdk-version.txt")) {
if (entry.getName().equals("com/dropbox/core/sdk-version.txt")) {
def version = jar.text.trim();
if (!(version ==~ /\d+\.\d+\.\d+/)) {
throw new GradleException("SDK version not in semantic versioning format: " + version +
Expand Down

0 comments on commit 3cba577

Please sign in to comment.