From 15011a221b46004353ef76839195d62044d60181 Mon Sep 17 00:00:00 2001 From: Mike Penz Date: Sat, 30 May 2015 20:25:15 +0200 Subject: [PATCH 1/2] * update to the latest appcompat v22.2.0 --- library/build.gradle | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/library/build.gradle b/library/build.gradle index 67f7eb103..50beb27a4 100755 --- a/library/build.gradle +++ b/library/build.gradle @@ -26,8 +26,8 @@ android { apply from: 'gradle-mvn-push.gradle' dependencies { - compile 'com.android.support:support-v4:22.1.1' - compile 'com.android.support:appcompat-v7:22.1.1' - compile 'com.android.support:cardview-v7:22.1.1' - compile 'com.android.support:recyclerview-v7:22.1.1' + compile 'com.android.support:support-v4:22.2.0' + compile 'com.android.support:appcompat-v7:22.2.0' + compile 'com.android.support:cardview-v7:22.2.0' + compile 'com.android.support:recyclerview-v7:22.2.0' } From bd2221872331624178a5367a2bab7b77f46d0fc2 Mon Sep 17 00:00:00 2001 From: Mike Penz Date: Sat, 30 May 2015 20:26:13 +0200 Subject: [PATCH 2/2] * [release] v5.0.2 --- README.md | 2 +- gradle.properties | 4 ++-- library/build.gradle | 4 ++-- .../src/main/res/values/library_aboutlibraries_strings.xml | 2 +- sample/build.gradle | 4 ++-- 5 files changed, 8 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index de84bea92..7efc71610 100644 --- a/README.md +++ b/README.md @@ -46,7 +46,7 @@ You can find anything you search for in the wiki. (If not open an issue) The AboutLibraries Library is pushed to [Maven Central](http://search.maven.org/#search|ga|1|g%3A%22com.mikepenz%22), so you just need to add the following dependency to your `build.gradle`. It seems it is also required to add the support dependencies to the application. If it works without, you should be fine too :). ```javascript -compile('com.mikepenz:aboutlibraries:5.0.1@aar') { +compile('com.mikepenz:aboutlibraries:5.0.2@aar') { transitive = true } ``` diff --git a/gradle.properties b/gradle.properties index db4fa9ec2..f09a47bd7 100755 --- a/gradle.properties +++ b/gradle.properties @@ -17,8 +17,8 @@ # http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects # org.gradle.parallel=true -VERSION_NAME=5.0.1 -VERSION_CODE=501 +VERSION_NAME=5.0.2 +VERSION_CODE=502 GROUP=com.mikepenz POM_DESCRIPTION=AboutLibraries Library diff --git a/library/build.gradle b/library/build.gradle index 50beb27a4..01336d10b 100755 --- a/library/build.gradle +++ b/library/build.gradle @@ -6,8 +6,8 @@ android { defaultConfig { minSdkVersion 10 targetSdkVersion 22 - versionCode 501 - versionName '5.0.1' + versionCode 502 + versionName '5.0.2' } buildTypes { diff --git a/library/src/main/res/values/library_aboutlibraries_strings.xml b/library/src/main/res/values/library_aboutlibraries_strings.xml index 7c46f4861..081c7257d 100755 --- a/library/src/main/res/values/library_aboutlibraries_strings.xml +++ b/library/src/main/res/values/library_aboutlibraries_strings.xml @@ -12,7 +12,7 @@ Most modern apps feature an "Used Library"-Section and for this some information of those libs is required. As it gets annoying to copy those strings always to your app I have developed this small helper library to provide the required information. ]]> - 5.0.1 + 5.0.2 https://github.com/mikepenz/AboutLibraries apache_2_0 true diff --git a/sample/build.gradle b/sample/build.gradle index 955b69ef0..e5e164f32 100644 --- a/sample/build.gradle +++ b/sample/build.gradle @@ -13,8 +13,8 @@ android { applicationId 'com.mikepenz.aboutlibraries.sample' minSdkVersion 11 targetSdkVersion 22 - versionCode 501 - versionName '5.0.1' + versionCode 502 + versionName '5.0.2' applicationVariants.all { variant -> variant.outputs.each { output ->