Skip to content

Commit 8da3abd

Browse files
author
jacob-tabak
committed
Release 0.4.2
1 parent 2016e42 commit 8da3abd

File tree

3 files changed

+9
-5
lines changed

3 files changed

+9
-5
lines changed

README.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Here is a quick video of it in action (click to see the full video):
1616
Download
1717
--------
1818

19-
compile 'com.timehop.stickyheadersrecyclerview:library:0.4.1@aar'
19+
compile 'com.timehop.stickyheadersrecyclerview:library:0.4.2@aar'
2020

2121
Usage
2222
-----
@@ -94,8 +94,12 @@ Known Issues
9494

9595
* I haven't tested this with ItemAnimators yet.
9696

97+
* The header views are drawn to a canvas, and are not actually a part of the view hierarchy. As such, they can't have touch states, and you may run into issues if you try to load images into them asynchronously.
98+
9799
Version History
98100
---------------
101+
0.4.2 (8/21/2015) - Add support for reverse `ReverseLayout` in `LinearLayoutManager` by [AntonPukhonin](https://github.com/AntonPukhonin)
102+
99103
0.4.1 (6/24/2015) - Fix "dancing headers" by DarkJaguar91
100104

101105
0.4.0 (4/16/2015) - Code reorganization by danoz73, fixes for different sized headers, performance improvements

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,6 @@ ext {
2323
buildToolsVersion = '22.0.1'
2424
targetSdkVersion = 22
2525
minSdkVersion = 14
26-
versionCode = 11
27-
versionName = "0.4.1"
26+
versionCode = 12
27+
versionName = "0.4.2"
2828
}

gradle.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@
1717
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
1818
# org.gradle.parallel=true
1919

20-
VERSION_NAME=0.4.1
21-
VERSION_CODE=11
20+
VERSION_NAME=0.4.2
21+
VERSION_CODE=12
2222
GROUP=com.timehop.stickyheadersrecyclerview
2323

2424
POM_DESCRIPTION=RecyclerView decorator for sticky list headers.

0 commit comments

Comments
 (0)