From ecad6e4f749f688b425524b8eaf4a1485c7b0330 Mon Sep 17 00:00:00 2001 From: Bartosz Lipinski Date: Thu, 2 Apr 2015 18:14:52 +0200 Subject: [PATCH] Project update - release 1.0.1 --- CHANGELOG.md | 5 +++++ README.md | 16 ++++++++-------- gradle.properties | 4 ++-- library/build.gradle | 4 ++-- sample/build.gradle | 4 ++-- 5 files changed, 19 insertions(+), 14 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ddd040d..7e8183c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +Version 1.0.1 *(2015-04-02)* +---------------------------- + + * Fix: Header clickability fixed + Version 1.0.0 *(2015-04-02)* ---------------------------- diff --git a/README.md b/README.md index 4305c73..e850ced 100644 --- a/README.md +++ b/README.md @@ -40,12 +40,18 @@ Basically, there are two ways of using `RecyclerViewHeader`. **Header-already-aligned approach** (does not introduce any additional `Layouts`): - 1. Place `RecyclerViewHeader`layout under your `RecyclerView` at the top part of it. + 1. Place `RecyclerViewHeader`layout above your `RecyclerView` at the top part of it. + + - - 2. Get the `RecyclerViewHeader` view object with: @@ -95,7 +95,7 @@ You can grab the library via Maven Central. Just add a proper dependency inside ```xml dependencies { - compile 'com.bartoszlipinski.recyclerviewheader:library:1.0.0' + compile 'com.bartoszlipinski.recyclerviewheader:library:1.0.1' } ``` diff --git a/gradle.properties b/gradle.properties index 52d851e..aae7e3f 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,5 +1,5 @@ -VERSION_NAME=1.0.0 -VERSION_CODE=1 +VERSION_NAME=1.0.1 +VERSION_CODE=2 GROUP=com.bartoszlipinski.recyclerviewheader POM_DESCRIPTION=Super fast and easy way to create header for Android RecyclerView diff --git a/library/build.gradle b/library/build.gradle index d6ca07b..6cc7d95 100644 --- a/library/build.gradle +++ b/library/build.gradle @@ -7,8 +7,8 @@ android { defaultConfig { minSdkVersion 16 targetSdkVersion 21 - versionCode 1 - versionName "1.0.0" + versionCode 2 + versionName "1.0.1" } buildTypes { release { diff --git a/sample/build.gradle b/sample/build.gradle index dae020c..7170b56 100644 --- a/sample/build.gradle +++ b/sample/build.gradle @@ -8,8 +8,8 @@ android { applicationId "com.bartoszlipinski.recyclerviewheader.sample" minSdkVersion 16 targetSdkVersion 21 - versionCode 1 - versionName "1.0.0" + versionCode 2 + versionName "1.0.1" } buildTypes { release {