diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..95a9dbf --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,14 @@ +## 2.1.0 + +* [NEW] add sticky footers feature +* [NEW] add old item param to PayloadMapper to calculate payload correctly +* extract common scroll listener and add coroutines implementation +* update to latest agp, kotlin and gradle + +## 2.1.0 + +* refactored base implementation and added coroutines(flow) implementation + +## 1.0.0 + +* base version and rx implementation \ No newline at end of file diff --git a/README.md b/README.md index f4646c8..ccfa9e7 100644 --- a/README.md +++ b/README.md @@ -11,14 +11,14 @@ some important differences. More info in [Motivation](#motivation) section Add dependencies to your build.gradle ```kotlin -// pure base lib dependency without any concurrent work (but you will need to implement some basic stuff to work with click and etc.) -implementation 'ru.tinkoff.mobile:ti-recycler:2.0.0' +// pure base lib dependency without any concurrent work +implementation 'ru.tinkoff.mobile:ti-recycler:2.1.0' // or // version with RxJava2 -implementation 'ru.tinkoff.mobile:ti-recycler-rx2:2.0.0' +implementation 'ru.tinkoff.mobile:ti-recycler-rx2:2.1.0' // or // coroutines(Flow) version -implementation 'ru.tinkoff.mobile:ti-recycler-coroutines:2.0.0' +implementation 'ru.tinkoff.mobile:ti-recycler-coroutines:2.1.0' ``` # How to use it diff --git a/gradle.properties b/gradle.properties index 263258f..5182dc1 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,4 +1,4 @@ -VERSION_NAME=2.0.0 +VERSION_NAME=2.1.0 GROUP=ru.tinkoff.mobile POM_DESCRIPTION=Library which allows you to build screens with RecyclerView faster