Skip to content

Commit

Permalink
add changelog and bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
a.guzenko committed Jan 13, 2023
1 parent 35a9e56 commit efd15ab
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 5 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit efd15ab

Please sign in to comment.