Skip to content

Commit 8a604c8

Browse files
committed
Prepare for v0.10.6
1 parent 85985a5 commit 8a604c8

File tree

4 files changed

+19
-7
lines changed

4 files changed

+19
-7
lines changed

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ This RecyclerView extension library provides Google's Inbox app like swiping, Pl
55

66
[ ![Download](https://api.bintray.com/packages/h6ah4i/maven/android-advancedrecyclerview/images/download.svg) ](https://bintray.com/h6ah4i/maven/android-advancedrecyclerview/_latestVersion)
77
[![Android Arsenal](https://img.shields.io/badge/Android%20Arsenal-Advanced%20RecyclerView-brightgreen.svg?style=flat)](https://android-arsenal.com/details/1/1432)
8-
[![Method Count](https://img.shields.io/badge/Methods%20and%20size-core:%201707%20%7C%20deps:%2021568%20%7C%20232%20KB-e91e63.svg) ](http://www.methodscount.com/?lib=com.h6ah4i.android.widget.advrecyclerview%3Aadvrecyclerview%3A0.10.5)
8+
[![Method Count](https://img.shields.io/badge/Methods%20and%20size-core:%201711%20%7C%20deps:%2021568%20%7C%20233%20KB-e91e63.svg) ](http://www.methodscount.com/?lib=com.h6ah4i.android.widget.advrecyclerview%3Aadvrecyclerview%3A0.10.6)
99
---
1010

1111
### Download the example app
@@ -32,7 +32,7 @@ Target platforms
3232
Latest version
3333
---
3434

35-
- Version 0.10.5 (March 25, 2017) ([RELEASE NOTES](./RELEASE-NOTES.md))
35+
- Version 0.10.6 (May 6, 2017) ([RELEASE NOTES](./RELEASE-NOTES.md))
3636

3737

3838
**Recent Breaking Change Info**
@@ -47,7 +47,7 @@ This library is published on jCenter. Just add these lines to `build.gradle`.
4747

4848
```gradle
4949
dependencies {
50-
compile ('com.h6ah4i.android.widget.advrecyclerview:advrecyclerview:0.10.5@aar'){
50+
compile ('com.h6ah4i.android.widget.advrecyclerview:advrecyclerview:0.10.6@aar'){
5151
transitive=true
5252
}
5353
}

RELEASE-NOTES.md

+12
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
## 0.10.6
2+
[Bug fixes]
3+
- Fixed some internal wrapper adapter's onViewRecycled() method is not invoked (issue #376)
4+
- Fixed unexpected onClick() event fired after finished dragging item (issue #378)
5+
6+
[New features]
7+
- Added RecyclerViewSwipeManager.performFakeSwiping (issue #372)
8+
9+
[Improvements]
10+
- Changed to preserve item scaling when starts dragging (issue #384)
11+
12+
113
## 0.10.5
214
[Bug fixes]
315
- Fixed View.OVER_SCROLL_NEVER not work when dragging (issue #374)

example/build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ android {
2525
applicationId "com.h6ah4i.android.example.advrecyclerview"
2626
minSdkVersion 9
2727
targetSdkVersion 25
28-
versionCode 27
29-
versionName "0.10.5"
28+
versionCode 28
29+
versionName "0.10.6"
3030
vectorDrawables.useSupportLibrary = true
3131
}
3232

library/library-data.properties

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# suppress inspection "UnusedProperty" for whole file
22
# common
3-
VERSION_NAME=0.10.5
4-
VERSION_CODE=27
3+
VERSION_NAME=0.10.6
4+
VERSION_CODE=28
55

66
# for maven-publish
77
POM_GROUP_ID=com.h6ah4i.android.widget.advrecyclerview

0 commit comments

Comments
 (0)