Skip to content

Commit 894ef2d

Browse files
author
jacob-tabak
committed
0.4.3 release prep
1 parent 1882b2d commit 894ef2d

File tree

4 files changed

+8
-6
lines changed

4 files changed

+8
-6
lines changed

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ Item animators don't play nicely with RecyclerView decorations, so your mileage
8888
Compatibility
8989
-------------
9090

91-
This should work in API 14+.
91+
API 11+
9292

9393
Known Issues
9494
------------
@@ -101,6 +101,8 @@ Known Issues
101101

102102
Version History
103103
---------------
104+
0.4.3 (12/24/2015) - Change minSDK to 11, fix issue with header bounds caching
105+
104106
0.4.2 (8/21/2015) - Add support for reverse `ReverseLayout` in `LinearLayoutManager` by [AntonPukhonin](https://github.com/AntonPukhonin)
105107

106108
0.4.1 (6/24/2015) - Fix "dancing headers" by DarkJaguar91

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,6 @@ ext {
2424
supportLibsVersion = '23.1.1'
2525
targetSdkVersion = 22
2626
minSdkVersion = 11
27-
versionCode = 12
28-
versionName = "0.4.2"
27+
versionCode = 13
28+
versionName = "0.4.3"
2929
}

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.2
21-
VERSION_CODE=12
20+
VERSION_NAME=0.4.3
21+
VERSION_CODE=13
2222
GROUP=com.timehop.stickyheadersrecyclerview
2323

2424
POM_DESCRIPTION=RecyclerView decorator for sticky list headers.

library/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ android {
1717
}
1818

1919
dependencies {
20-
compile 'com.android.support:recyclerview-v7:23.1.1'
20+
compile "com.android.support:recyclerview-v7:${rootProject.supportLibsVersion}"
2121
}
2222

2323
apply from: 'gradle-maven-push.gradle'

0 commit comments

Comments
 (0)