From 5cdaeae2adc9cda57305e671ac47c368d209f65b Mon Sep 17 00:00:00 2001 From: Mike Penz Date: Mon, 15 Jan 2018 16:38:20 +0100 Subject: [PATCH] * [release] v3.1.2 --- README.md | 8 ++++---- app/build.gradle | 4 ++-- library-core/build.gradle | 4 ++-- library-core/gradle.properties | 4 ++-- library-extensions-expandable/build.gradle | 4 ++-- library-extensions-expandable/gradle.properties | 4 ++-- library-extensions/build.gradle | 4 ++-- library-extensions/gradle.properties | 4 ++-- library/build.gradle | 4 ++-- library/gradle.properties | 4 ++-- 10 files changed, 22 insertions(+), 22 deletions(-) diff --git a/README.md b/README.md index 7ddd2d27e..55d0ae958 100644 --- a/README.md +++ b/README.md @@ -41,26 +41,26 @@ You can try it out here [Google Play](https://play.google.com/store/apps/details The library is split up into core, commons, and extensions. The core functions are included in the following dependency. ```gradle -implementation 'com.mikepenz:fastadapter:3.1.1@aar' +implementation 'com.mikepenz:fastadapter:3.1.2@aar' implementation 'com.android.support:appcompat-v7:${latestSupportLib}' implementation 'com.android.support:recyclerview-v7:${latestSupportLib}' ``` The commons package comes with some useful helpers (which are not needed in all cases) This one for example includes the `FastItemAdapter` ```gradle -implementation 'com.mikepenz:fastadapter-commons:3.1.1@aar' +implementation 'com.mikepenz:fastadapter-commons:3.1.2@aar' ``` Expandable support is included and can be added via this ```gradle -implementation 'com.mikepenz:fastadapter-extensions-expandable:3.1.1@aar' +implementation 'com.mikepenz:fastadapter-extensions-expandable:3.1.2@aar' //The tiny Materialize library used for its useful helper classes implementation 'com.mikepenz:materialize:${latestVersion}@aar' ``` Many helper classes are included in the following dependency. (This functionality also needs the `Expandable` extension ```gradle -implementation 'com.mikepenz:fastadapter-extensions:3.1.1@aar' +implementation 'com.mikepenz:fastadapter-extensions:3.1.2@aar' implementation 'com.android.support:design:${versions.supportLib}' //The tiny Materialize library used for its useful helper classes implementation 'com.mikepenz:materialize:${latestVersion}@aar' diff --git a/app/build.gradle b/app/build.gradle index 994135984..f718ca2b8 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -13,8 +13,8 @@ android { defaultConfig { minSdkVersion setup.minSdk targetSdkVersion setup.targetSdk - versionCode 3110 - versionName '3.1.1' + versionCode 3120 + versionName '3.1.2' setProperty("archivesBaseName", "FastAdapter-v$versionName-c$versionCode") } diff --git a/library-core/build.gradle b/library-core/build.gradle index 6710c9ae5..0eb005961 100644 --- a/library-core/build.gradle +++ b/library-core/build.gradle @@ -10,8 +10,8 @@ android { defaultConfig { minSdkVersion setup.minSdk targetSdkVersion setup.targetSdk - versionCode 3110 - versionName '3.1.1' + versionCode 3120 + versionName '3.1.2' consumerProguardFiles 'consumer-proguard-rules.pro' diff --git a/library-core/gradle.properties b/library-core/gradle.properties index 45ba86d8a..9a63882a1 100755 --- a/library-core/gradle.properties +++ b/library-core/gradle.properties @@ -1,5 +1,5 @@ POM_NAME=FastAdapter Library POM_ARTIFACT_ID=fastadapter POM_PACKAGING=aar -VERSION_NAME=3.1.1 -VERSION_CODE=3110 +VERSION_NAME=3.1.2 +VERSION_CODE=3120 diff --git a/library-extensions-expandable/build.gradle b/library-extensions-expandable/build.gradle index 5b07ddb06..3ebb5f406 100644 --- a/library-extensions-expandable/build.gradle +++ b/library-extensions-expandable/build.gradle @@ -9,8 +9,8 @@ android { defaultConfig { minSdkVersion setup.minSdk targetSdkVersion setup.targetSdk - versionCode 3110 - versionName '3.1.1' + versionCode 3120 + versionName '3.1.2' } buildTypes { release { diff --git a/library-extensions-expandable/gradle.properties b/library-extensions-expandable/gradle.properties index 8dfb4d99e..9b653a19c 100755 --- a/library-extensions-expandable/gradle.properties +++ b/library-extensions-expandable/gradle.properties @@ -1,5 +1,5 @@ POM_NAME=FastAdapter Library-Extensions-Expandable POM_ARTIFACT_ID=fastadapter-extensions-expandable POM_PACKAGING=aar -VERSION_NAME=3.1.1 -VERSION_CODE=3110 \ No newline at end of file +VERSION_NAME=3.1.2 +VERSION_CODE=3120 \ No newline at end of file diff --git a/library-extensions/build.gradle b/library-extensions/build.gradle index 001c2766f..dfe818f38 100644 --- a/library-extensions/build.gradle +++ b/library-extensions/build.gradle @@ -9,8 +9,8 @@ android { defaultConfig { minSdkVersion setup.minSdk targetSdkVersion setup.targetSdk - versionCode 3110 - versionName '3.1.1' + versionCode 3120 + versionName '3.1.2' consumerProguardFiles 'consumer-proguard-rules.pro' } diff --git a/library-extensions/gradle.properties b/library-extensions/gradle.properties index e829cd6f8..6155bc684 100755 --- a/library-extensions/gradle.properties +++ b/library-extensions/gradle.properties @@ -1,5 +1,5 @@ POM_NAME=FastAdapter Library-Extensions POM_ARTIFACT_ID=fastadapter-extensions POM_PACKAGING=aar -VERSION_NAME=3.1.1 -VERSION_CODE=3110 +VERSION_NAME=3.1.2 +VERSION_CODE=3120 diff --git a/library/build.gradle b/library/build.gradle index 811920ee1..fd0fbaf43 100644 --- a/library/build.gradle +++ b/library/build.gradle @@ -9,8 +9,8 @@ android { defaultConfig { minSdkVersion setup.minSdk targetSdkVersion setup.targetSdk - versionCode 3110 - versionName '3.1.1' + versionCode 3120 + versionName '3.1.2' } buildTypes { release { diff --git a/library/gradle.properties b/library/gradle.properties index 60e85b92c..3ddac1ef4 100755 --- a/library/gradle.properties +++ b/library/gradle.properties @@ -1,5 +1,5 @@ POM_NAME=FastAdapter Library POM_ARTIFACT_ID=fastadapter-commons POM_PACKAGING=aar -VERSION_NAME=3.1.1 -VERSION_CODE=3110 +VERSION_NAME=3.1.2 +VERSION_CODE=3120