diff --git a/CHANGELOG.md b/CHANGELOG.md index 6b3267d2..f26e66ef 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,14 @@ Change Log =============================================================================== +Version 1.7.2 *(2014-06-18)* +---------------------------- +* Changed the visibility of the`init() method` and its call. + +It contains a **BREAKING CHANGE** .* [(doc)](/doc/CARDWITHLIST.md#how-to-build-a-card-with-a-linearlist) +* Fixed the issue with Observer when the CardWithList works in a CardListView + + Version 1.7.1 *(2014-06-14)* ---------------------------- * Removed application labels from android-libs manifest to prevent issues with the new Manifest merger diff --git a/README.md b/README.md index 3b4c159e..b3a0cc99 100644 --- a/README.md +++ b/README.md @@ -53,7 +53,7 @@ The Guide provides a extensive doc, with all tips and full examples. Don't miss Card Library is pushed to Maven Central as an AAR, so you just need to add the following dependency to your `build.gradle`. dependencies { - compile 'com.github.gabrielemariotti.cards:library:1.7.1' + compile 'com.github.gabrielemariotti.cards:library:1.7.2' } diff --git a/doc/BUILD.md b/doc/BUILD.md index a00a8124..d129921a 100644 --- a/doc/BUILD.md +++ b/doc/BUILD.md @@ -17,10 +17,10 @@ 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:library:1.7.1' + compile 'com.github.gabrielemariotti.cards:library:1.7.2' //Extra card library, it is required only if you want to use integrations with other libraries - compile 'com.github.gabrielemariotti.cards:library-extra:1.7.1' + compile 'com.github.gabrielemariotti.cards:library-extra:1.7.2' } The library-extra is optional. It contains code to use integrations with other libraries, as StaggeredGridView and CardListDragDropView. diff --git a/doc/CARDWITHLIST.md b/doc/CARDWITHLIST.md index 6f530f36..c4700799 100644 --- a/doc/CARDWITHLIST.md +++ b/doc/CARDWITHLIST.md @@ -60,6 +60,13 @@ Finally you have to call the `init()` method. card.init(); ``` +**Migration from 1.7.0 - to 1.7.2+** + + The 1.7.2 introduces a breaking change with CardWithList. + To migrate your code you have to: + + * call `card.init()";` + ## Init the CardHeader diff --git a/doc/GUIDE.md b/doc/GUIDE.md index 7ee86e1f..425b8e31 100644 --- a/doc/GUIDE.md +++ b/doc/GUIDE.md @@ -15,10 +15,10 @@ 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:library:1.7.1' + compile 'com.github.gabrielemariotti.cards:library:1.7.2' //Extra card library, it is required only if you want to use integrations with other libraries - compile 'com.github.gabrielemariotti.cards:library-extra:1.7.1' + compile 'com.github.gabrielemariotti.cards:library-extra:1.7.2' } The library-extra is optional. It contains code to use integrations with other libraries, as StaggeredGridView and CardListDragDropView. diff --git a/gradle.properties b/gradle.properties index 7cf652f9..24738056 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,4 +1,4 @@ -VERSION_NAME=1.7.2-SNAPSHOT +VERSION_NAME=1.7.3-SNAPSHOT VERSION_CODE=32 GROUP=com.github.gabrielemariotti.cards