From 77d052949efffe75622660efd66a42120707a52b Mon Sep 17 00:00:00 2001 From: Mike Penz Date: Tue, 26 Jan 2016 01:13:50 +0100 Subject: [PATCH 1/4] * fix jcenter push --- library/gradle-jcenter-push.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/gradle-jcenter-push.gradle b/library/gradle-jcenter-push.gradle index bece178..a63ffb3 100644 --- a/library/gradle-jcenter-push.gradle +++ b/library/gradle-jcenter-push.gradle @@ -4,7 +4,7 @@ publish { bintrayKey = project.hasProperty('bintray.apikey') ? project.property('bintray.apikey') : System.getenv('BINTRAY_API_KEY') userOrg = project.property("POM_DEVELOPER_ID") groupId = project.property("GROUP") - artifactId = project.property("GROUP") + ":" + project.property("POM_ARTIFACT_ID") + artifactId = project.property("POM_ARTIFACT_ID") publishVersion = project.property("VERSION_NAME") desc = project.property("POM_DESCRIPTION") website = project.property("POM_URL") From 7e69ad5c83c446d6a0aacc9e8f07cf4a0bbd979b Mon Sep 17 00:00:00 2001 From: Mike Penz Date: Tue, 26 Jan 2016 01:14:01 +0100 Subject: [PATCH 2/4] * update sample app dependencies * update android-iconics --- app/build.gradle | 6 +++--- library/build.gradle | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/app/build.gradle b/app/build.gradle index 735def5..89bc57e 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -30,12 +30,12 @@ dependencies { // contains util classes to support various android versions, and clean up code // comes with the awesome "Holder"-Pattern // https://github.com/mikepenz/Materialize - compile 'com.mikepenz:materialize:0.5.1@aar' + compile 'com.mikepenz:materialize:0.6.0@aar' // used to provide out of the box icon font support. simplifies development, // and provides scalable icons. the core is very very light // https://github.com/mikepenz/Android-Iconics - compile 'com.mikepenz:iconics-core:2.5.4@aar' + compile 'com.mikepenz:iconics-core:2.5.5@aar' //used to generate the drawer on the left //https://github.com/mikepenz/MaterialDrawer @@ -43,7 +43,7 @@ dependencies { //used to generate the Open Source section //https://github.com/mikepenz/AboutLibraries - compile 'com.mikepenz:aboutlibraries:5.3.4@aar' + compile 'com.mikepenz:aboutlibraries:5.3.7@aar' //used to display the icons in the drawer and in the menu //https://github.com/mikepenz/Android-Iconics diff --git a/library/build.gradle b/library/build.gradle index a13f69d..ba94fe2 100644 --- a/library/build.gradle +++ b/library/build.gradle @@ -25,5 +25,5 @@ dependencies { // used to provide out of the box icon font support. simplifies development, // and provides scalable icons. the core is very very light // https://github.com/mikepenz/Android-Iconics - compile 'com.mikepenz:iconics-core:2.5.4@aar' + compile 'com.mikepenz:iconics-core:2.5.5@aar' } From a5b4689b9b62eb3e9cbb0aa152dbc147e7db5136 Mon Sep 17 00:00:00 2001 From: Mike Penz Date: Tue, 26 Jan 2016 01:14:17 +0100 Subject: [PATCH 3/4] * update android-iconics --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 7a54744..6795c64 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ dependencies { //SUB-DEPENDENCIES //Android-Iconics - used to provide an easy API for icons - compile 'com.mikepenz:iconics-core:2.5.4@aar' + compile 'com.mikepenz:iconics-core:2.5.5@aar' } ``` From 25d43b774fe2d202fa49e96c9ae5dc800863134d Mon Sep 17 00:00:00 2001 From: Mike Penz Date: Tue, 26 Jan 2016 01:15:48 +0100 Subject: [PATCH 4/4] * [release] v3.2.2 --- README.md | 2 +- app/build.gradle | 4 ++-- gradle.properties | 4 ++-- library/build.gradle | 4 ++-- library/src/main/res/values/aboutlibraries.xml | 2 +- 5 files changed, 8 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 6795c64..fefaaa1 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ The ActionItemBadge Library is pushed to [Maven Central], so you just need to ad ```javascript dependencies { - compile 'com.mikepenz:actionitembadge:3.2.1@aar' + compile 'com.mikepenz:actionitembadge:3.2.2@aar' //SUB-DEPENDENCIES //Android-Iconics - used to provide an easy API for icons diff --git a/app/build.gradle b/app/build.gradle index 89bc57e..622b795 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -7,8 +7,8 @@ android { defaultConfig { minSdkVersion 14 targetSdkVersion 23 - versionCode 321 - versionName "3.2.1" + versionCode 322 + versionName "3.2.2" } buildTypes { release { diff --git a/gradle.properties b/gradle.properties index e90c980..7cce5bb 100644 --- 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=3.2.1 -VERSION_CODE=321 +VERSION_NAME=3.2.2 +VERSION_CODE=322 GROUP=com.mikepenz POM_DESCRIPTION=Android-ActionItemBadge Library diff --git a/library/build.gradle b/library/build.gradle index ba94fe2..76896ea 100644 --- a/library/build.gradle +++ b/library/build.gradle @@ -8,8 +8,8 @@ android { defaultConfig { minSdkVersion 14 targetSdkVersion 23 - versionCode 321 - versionName "3.2.1" + versionCode 322 + versionName "3.2.2" } buildTypes { release { diff --git a/library/src/main/res/values/aboutlibraries.xml b/library/src/main/res/values/aboutlibraries.xml index 4bd226f..9f65d1c 100644 --- a/library/src/main/res/values/aboutlibraries.xml +++ b/library/src/main/res/values/aboutlibraries.xml @@ -9,7 +9,7 @@ Android-ActionItemBadge is a library which offers a simple and easy to use method to add a badge to your action item!! ]]> - 3.2.1 + 3.2.2 https://github.com/mikepenz/Android-ActionItemBadge apache_2_0 true