diff --git a/CHANGELOG.md b/CHANGELOG.md index 9a425f4..cdfe8f2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -# From v0.2.1: +# From v0.2.1/ v0.2.2: # Major Changes * Adds support for min API 16 @@ -6,6 +6,8 @@ ## Bug fixes * Fixes crash due to incomplete implementation of `onFlingListener` +**Note**: v0.2.2 was an internal release + # From v0.2.0: ## New Features diff --git a/README.md b/README.md index 7dc4f97..b63b9e2 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ A simple, easy to use and configurable fast scroller for `RecyclerView` ## Adding the dependency ```groovy -implementation 'com.quiph.ui:recyclerviewfastscroller:0.2.2' +implementation 'com.quiph.ui:recyclerviewfastscroller:0.2.3' ``` ## Java-only project? As Kotlin compiles to Java, there's no need to externally add the Kotlin runtime or any other Kotlin dependencies when using this. Also the library is **100% compatible with Java** and requires **no migration** of the base project to Kotlin. diff --git a/gradle.properties b/gradle.properties index cb4a436..d176891 100644 --- a/gradle.properties +++ b/gradle.properties @@ -18,8 +18,8 @@ android.enableJetifier=true # ref: https://github.com/chrisbanes/gradle-mvn-push and # ref2: https://chris.banes.dev/2013/08/27/pushing-aars-to-maven-central/ -VERSION_NAME=0.2.2 -VERSION_CODE=6 +VERSION_NAME=0.2.3 +VERSION_CODE=7 GROUP=com.quiph.ui POM_DESCRIPTION=A modern implementation of the RecyclerViewFastScroller for Android written in Kotlin diff --git a/recyclerviewfastscroller/build.gradle b/recyclerviewfastscroller/build.gradle index 1134c7c..ec130a2 100644 --- a/recyclerviewfastscroller/build.gradle +++ b/recyclerviewfastscroller/build.gradle @@ -7,8 +7,8 @@ android { defaultConfig { minSdkVersion versions.'minSdk' targetSdkVersion versions.'targetSdk' - versionCode 6 - versionName "0.2.2" + versionCode 7 + versionName "0.2.3" testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"