Skip to content

Commit 1113485

Browse files
committed
Prepare for release v0.10.5
1 parent 33656ed commit 1113485

File tree

4 files changed

+17
-8
lines changed

4 files changed

+17
-8
lines changed

README.md

+4-4
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 and size-core: 1704 | deps: 21568 | 232 KB-e91e63.svg) ](http://www.methodscount.com/?lib=com.h6ah4i.android.widget.advrecyclerview%3Aadvrecyclerview%3A0.10.4)
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)
99
---
1010

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

35-
- Version 0.10.4 (February 25, 2017) ([RELEASE NOTES](./RELEASE-NOTES.md))
35+
- Version 0.10.5 (March 25, 2017) ([RELEASE NOTES](./RELEASE-NOTES.md))
3636

3737

38-
**Breaking Change Info**
38+
**Recent Breaking Change Info**
3939

4040
- **v0.10.4:** `OnGroupExpandListener` and `OnGroupCollapseListener` takes `payload` parameter. (related: [issue #350](https://github.com/h6ah4i/android-advancedrecyclerview/issues/350))
4141

@@ -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.4@aar'){
50+
compile ('com.h6ah4i.android.widget.advrecyclerview:advrecyclerview:0.10.5@aar'){
5151
transitive=true
5252
}
5353
}

RELEASE-NOTES.md

+9
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
## 0.10.5
2+
[Bug fixes]
3+
- Fixed View.OVER_SCROLL_NEVER not work when dragging (issue #374)
4+
5+
[Improvements]
6+
- Expose path segments for header footer adapter (PR #368, #373)
7+
- Updated support library to v25.3.0
8+
9+
110
## 0.10.4
211
[BREAKING CHANGE]
312
- The `payload` parameter is added to `OnGroupExpandListener` and `OnGroupCollapseListener` (issue #350)

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 26
29-
versionName "0.10.4"
28+
versionCode 27
29+
versionName "0.10.5"
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.4
4-
VERSION_CODE=26
3+
VERSION_NAME=0.10.5
4+
VERSION_CODE=27
55

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

0 commit comments

Comments
 (0)