diff --git a/CHANGELOG.md b/CHANGELOG.md index d257c290..e9aeefa5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,7 @@ Change Log =============================================================================== -Version 1.3.0 *(2014-XX-XX)* +Version 1.3.0 *(2014-01-25)* ---------------------------- * LIB: Added a `CardGridArrayMultiChoiceAdapter` [(doc)](https://github.com/gabrielemariotti/cardslib/tree/master/doc/CARDGRID.md#using-a-cardgrid-in-multichoicemode) * LIB: Added a `CardArrayMultiChoiceAdapter` [(doc)](https://github.com/gabrielemariotti/cardslib/tree/master/doc/CARDLIST.md#using-a-cardlist-in-multichoicemode) @@ -9,6 +9,7 @@ Version 1.3.0 *(2014-XX-XX)* * DEMO: Added an example with CardGridArrayMultiChoiceAdapter * DEMO: Added an example with CardArrayMultiChoiceAdapter * DEMO: Added an example with the popupMenu changed dynamically (in Header screen) +* Migrated library and demo to gradle 1.10 and gradle-plugin 0.8.0 Version 1.2.0 *(2014-01-07)* @@ -35,6 +36,7 @@ Version 1.1.0 *(2013-12-16)* * DEMO: Added an example with Header with buttons on the left (in Header screen) + Version 1.0.0 *(2013-12-03)* ---------------------------- * DEMO-extras: Added an example with [StickyListHeaders by Emil Sjölander](https://github.com/emilsjolander/StickyListHeaders) [(doc)](https://github.com/gabrielemariotti/cardslib/tree/master/doc/OTHERLIBRARIES.md#using-card-with-stickylistheaders) diff --git a/README.md b/README.md index 9297502b..56172784 100644 --- a/README.md +++ b/README.md @@ -50,7 +50,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.2.0' + compile 'com.github.gabrielemariotti.cards:library:1.3.0' } diff --git a/demo/extras/src/main/java/it/gmariotti/cardslib/demo/extras/MainActivity.java b/demo/extras/src/main/java/it/gmariotti/cardslib/demo/extras/MainActivity.java index ad040e2e..0814edd7 100644 --- a/demo/extras/src/main/java/it/gmariotti/cardslib/demo/extras/MainActivity.java +++ b/demo/extras/src/main/java/it/gmariotti/cardslib/demo/extras/MainActivity.java @@ -338,8 +338,8 @@ private void openFragment(BaseFragment baseFragment) { "ListViewAnimations", "GridViewAnimations", "Crouton", - "StickyListHeaders", - "StaggeredGrid" + "StickyListHeaders" + //"StaggeredGrid" }; diff --git a/doc/BUILD.md b/doc/BUILD.md index 6983eea6..5cc10b97 100644 --- a/doc/BUILD.md +++ b/doc/BUILD.md @@ -16,7 +16,7 @@ In this page you can find info about: Card Library is pushed to Maven Central as a AAR, so you just need to add the following dependency to your `build.gradle`. dependencies { - compile 'com.github.gabrielemariotti.cards:library:1.2.0' + compile 'com.github.gabrielemariotti.cards:library:1.3.0' } ## Building locally in Android Studio with Gradle diff --git a/doc/GUIDE.md b/doc/GUIDE.md index 956869ca..b7ac3d55 100644 --- a/doc/GUIDE.md +++ b/doc/GUIDE.md @@ -13,7 +13,7 @@ In this page you can find info about: 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.2.0' + compile 'com.github.gabrielemariotti.cards:library:1.3.0' } [To build the library and demo locally you can see this page for more info](https://github.com/gabrielemariotti/cardslib/tree/master/doc/BUILD.md). diff --git a/gradle.properties b/gradle.properties index 29a364d6..47e9c5c8 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,5 +1,5 @@ -VERSION_NAME=1.2.1-SNAPSHOT -VERSION_CODE=26 +VERSION_NAME=1.3.1-SNAPSHOT +VERSION_CODE=27 GROUP=com.github.gabrielemariotti.cards POM_DESCRIPTION=Android Library to build a UI Card