diff --git a/README.markdown b/README.markdown index 4594290..36fddd0 100644 --- a/README.markdown +++ b/README.markdown @@ -19,7 +19,7 @@ repositories { } dependencies { - implementation 'com.commonsware.cwac:document:0.4.0' + implementation 'com.commonsware.cwac:document:0.4.1' } ``` @@ -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. @@ -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`. @@ -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 diff --git a/demo/build.gradle b/demo/build.gradle index b79ec39..66d8abd 100644 --- a/demo/build.gradle +++ b/demo/build.gradle @@ -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' }