From aafaa88d8548dec1cadbd887030a1da2b1e581f7 Mon Sep 17 00:00:00 2001 From: gabrielemariotti Date: Wed, 12 Nov 2014 09:12:13 +0100 Subject: [PATCH] Updated doc and prepared for 2.0.1 --- CHANGELOG.md | 6 ++++++ README.md | 12 ++++++------ doc/BUILD.md | 12 ++++++------ doc/GUIDE.md | 12 ++++++------ gradle.properties | 4 ++-- 5 files changed, 26 insertions(+), 20 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1cfa7ca2..8dceec51 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,12 @@ Change Log =============================================================================== +Version 2.0.1 *(2014-11-12)* +---------------------------- +* LIB-CORE:Fixed NPE in ForegroundLinearLayout +* LIB-CORE:Fixed expand area with CardWithList + + Version 2.0.0 *(2014-11-07)* ---------------------------- * LIB: Added the new **CardViewNative**! based on Google CardView [(Learn how to migrate your cards)](/doc/MIGRATE) diff --git a/README.md b/README.md index 8cc78851..6afb7ae6 100644 --- a/README.md +++ b/README.md @@ -46,22 +46,22 @@ Card Library is pushed to Maven Central as an AAR, so you just need to add the f dependencies { //Core - compile 'com.github.gabrielemariotti.cards:cardslib-core:2.0.0' + compile 'com.github.gabrielemariotti.cards:cardslib-core:2.0.1' //Optional for built-in cards - compile 'com.github.gabrielemariotti.cards:cardslib-cards:2.0.0' + compile 'com.github.gabrielemariotti.cards:cardslib-cards:2.0.1' //Optional for RecyclerView - compile 'com.github.gabrielemariotti.cards:cardslib-recyclerview:2.0.0' + compile 'com.github.gabrielemariotti.cards:cardslib-recyclerview:2.0.1' //Optional for staggered grid view - compile 'com.github.gabrielemariotti.cards:cardslib-extra-staggeredgrid:2.0.0' + compile 'com.github.gabrielemariotti.cards:cardslib-extra-staggeredgrid:2.0.1' //Optional for drag and drop - compile 'com.github.gabrielemariotti.cards:cardslib-extra-dragdrop:2.0.0' + compile 'com.github.gabrielemariotti.cards:cardslib-extra-dragdrop:2.0.1' //Optional for twoway (coming soon) - //compile 'com.github.gabrielemariotti.cards:cardslib-extra-twoway:2.0.0' + //compile 'com.github.gabrielemariotti.cards:cardslib-extra-twoway:2.0.1' } diff --git a/doc/BUILD.md b/doc/BUILD.md index 5da1455b..f39cc4c0 100644 --- a/doc/BUILD.md +++ b/doc/BUILD.md @@ -16,22 +16,22 @@ Card Library is pushed to Maven Central as a AAR, so you just need to add the fo dependencies { //Core card library - compile 'com.github.gabrielemariotti.cards:cardslib-core:2.0.0' + compile 'com.github.gabrielemariotti.cards:cardslib-core:2.0.1' //Optional for built-in cards - compile 'com.github.gabrielemariotti.cards:cardslib-cards:2.0.0' + compile 'com.github.gabrielemariotti.cards:cardslib-cards:2.0.1' //Optional for RecyclerView - compile 'com.github.gabrielemariotti.cards:cardslib-recyclerview:2.0.0' + compile 'com.github.gabrielemariotti.cards:cardslib-recyclerview:2.0.1' //Optional for staggered grid view support - compile 'com.github.gabrielemariotti.cards:cardslib-extra-staggeredgrid:2.0.0' + compile 'com.github.gabrielemariotti.cards:cardslib-extra-staggeredgrid:2.0.1' //Optional for drag and drop support - compile 'com.github.gabrielemariotti.cards:cardslib-extra-dragdrop:2.0.0' + compile 'com.github.gabrielemariotti.cards:cardslib-extra-dragdrop:2.0.1' //Optional for twowayview support (coming soon) - //compile 'com.github.gabrielemariotti.cards:cardslib-extra-twoway:2.0.0' + //compile 'com.github.gabrielemariotti.cards:cardslib-extra-twoway:2.0.1' } diff --git a/doc/GUIDE.md b/doc/GUIDE.md index 399d6870..073a7742 100644 --- a/doc/GUIDE.md +++ b/doc/GUIDE.md @@ -16,22 +16,22 @@ Card Library is pushed to Maven Central as an AAR, so you just need to add the f dependencies { //Core card library - compile 'com.github.gabrielemariotti.cards:cardslib-core:2.0.0' + compile 'com.github.gabrielemariotti.cards:cardslib-core:2.0.1' //Optional for built-in cards - compile 'com.github.gabrielemariotti.cards:cardslib-cards:2.0.0' + compile 'com.github.gabrielemariotti.cards:cardslib-cards:2.0.1' //Optional for RecyclerView - compile 'com.github.gabrielemariotti.cards:cardslib-recyclerview:2.0.0' + compile 'com.github.gabrielemariotti.cards:cardslib-recyclerview:2.0.1' //Optional for staggered grid view support - compile 'com.github.gabrielemariotti.cards:cardslib-extra-staggeredgrid:2.0.0' + compile 'com.github.gabrielemariotti.cards:cardslib-extra-staggeredgrid:2.0.1' //Optional for drag and drop support - compile 'com.github.gabrielemariotti.cards:cardslib-extra-dragdrop:2.0.0' + compile 'com.github.gabrielemariotti.cards:cardslib-extra-dragdrop:2.0.1' //Optional for twowayview support (coming soon) - //compile 'com.github.gabrielemariotti.cards:cardslib-extra-twoway:2.0.0' + //compile 'com.github.gabrielemariotti.cards:cardslib-extra-twoway:2.0.1' } diff --git a/gradle.properties b/gradle.properties index b8c322f1..30631706 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,5 +1,5 @@ -VERSION_NAME=2.0.1-SNAPSHOT -VERSION_CODE=201 +VERSION_NAME=2.0.2-SNAPSHOT +VERSION_CODE=202 GROUP=com.github.gabrielemariotti.cards POM_DESCRIPTION=Android Library to build a UI Card