Skip to content

Commit

Permalink
Prepared 1.7.2
Browse files Browse the repository at this point in the history
  • Loading branch information
gabrielemariotti committed Jun 18, 2014
1 parent 5f9759a commit d03f480
Show file tree
Hide file tree
Showing 6 changed files with 21 additions and 6 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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'
}


Expand Down
4 changes: 2 additions & 2 deletions doc/BUILD.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
7 changes: 7 additions & 0 deletions doc/CARDWITHLIST.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
4 changes: 2 additions & 2 deletions doc/GUIDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VERSION_NAME=1.7.2-SNAPSHOT
VERSION_NAME=1.7.3-SNAPSHOT
VERSION_CODE=32
GROUP=com.github.gabrielemariotti.cards

Expand Down

0 comments on commit d03f480

Please sign in to comment.