diff --git a/README.md b/README.md index 2353146..ca121ed 100644 --- a/README.md +++ b/README.md @@ -49,7 +49,7 @@ Add this to your module's `build.gradle` file: ```gradle dependencies { - implementation 'com.afollestad:recyclical:0.9.1' + implementation 'com.afollestad:recyclical:1.0.0-RC1' } ``` @@ -455,7 +455,7 @@ Add this to your module's `build.gradle` file: ```gradle dependencies { - implementation 'com.afollestad:recyclical-swipe:0.9.1' + implementation 'com.afollestad:recyclical-swipe:1.0.0-RC1' } ``` diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index 493ea2c..5575be1 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -1,17 +1,5 @@ -0.9.1 +1.0.0-RC1 -* `DataSource#set(...)`'s diffing comparators now use the type of items that the data source contains, rather than `Any` -(unless of course your data source contains `Any` type of item). - -### 0.9.0 - -* `withItem` requires that you specify the `ViewHolder` type as a generic parameter. -* Add `getSelectedItems(): List` method to `SelectableDataSource`. -* Add `onRecycled {}` method to `ItemDefinition`. - -### 0.8.0 - -1. Fix a crash caused by stored indices getting out of date as items are removed from the list. -2. `withItem` can take a custom class name string to support generated model classes, see #11. -3. Added generic `withSwipeActionOn<>` method to the swipe plugin to target specific item types, see #12. -4. Internal cleanup and dependency upgrades. \ No newline at end of file +* Preparing for 1.0.0! +* Got rid of 'long' swipe actions, at least for now. They don't work well with Android's included APIs. +* Some housecleaning and upgrades. \ No newline at end of file diff --git a/dependencies.gradle b/dependencies.gradle index 24b7b8b..4029137 100644 --- a/dependencies.gradle +++ b/dependencies.gradle @@ -2,8 +2,8 @@ ext.versions = [ minSdk : 19, compileSdk : 28, buildTools : '28.0.3', - publishVersion : '0.9.1', - publishVersionCode : 18, + publishVersion : '1.0.0-RC1', + publishVersionCode : 19, gradlePlugin : '3.4.1', kotlin : '1.3.31',