Skip to content

Commit

Permalink
updates for v0.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
commonsguy committed Jun 23, 2019
1 parent 1dd39b0 commit 476b866
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
7 changes: 4 additions & 3 deletions README.markdown
Expand Up @@ -19,7 +19,7 @@ repositories {
}
dependencies {
implementation 'com.commonsware.cwac:document:0.4.0'
implementation 'com.commonsware.cwac:document:0.4.1'
}
```

Expand Down Expand Up @@ -97,7 +97,7 @@ is supported with a fixed return value:
|`listFiles()` |yes |yes |no |no|
|`openInputStream()` |yes |no |yes |yes|
|`openOutputStream()`|yes |no |yes |yes|
|`renameTo()` |yes |yes |no |no|
|`renameTo()` |yes |yes |yes (API Level 21+) |no|

`findFile()` is supported if `listFiles()` is supported.

Expand All @@ -109,7 +109,7 @@ dependencies.

## Version

The current version is **0.4.0**. However, this uses a current version of
The current version is **0.4.1**. However, this uses a current version of
`com.android.support:support-annotations`, which (inexplicably) requires
a `minSdkVersion` of `14`.

Expand Down Expand Up @@ -152,6 +152,7 @@ Do not ask for help via social media.

## Release Notes

- v0.4.1: restored `renameTo()` for `SingleDocumentFile`
- v0.4.0: bug fix, to allow `listFiles()` on a tree to return proper `DocumentFileCompat` objects based on the document's type (regular or tree)
- v0.3.0: updated to current dependencies, raised `minSdkVersion` back to 14
- v0.2.0
Expand Down
2 changes: 1 addition & 1 deletion demo/build.gradle
Expand Up @@ -33,5 +33,5 @@ dependencies {
implementation 'androidx.lifecycle:lifecycle-extensions:2.0.0'
implementation "androidx.lifecycle:lifecycle-viewmodel-ktx:2.1.0-beta01"
debugImplementation project(":document")
releaseImplementation 'com.commonsware.cwac:document:0.4.0'
releaseImplementation 'com.commonsware.cwac:document:0.4.1'
}

0 comments on commit 476b866

Please sign in to comment.