From ba0377e0dee39443f1ca0d9f382600be2e355600 Mon Sep 17 00:00:00 2001 From: zsmb13 Date: Thu, 8 Feb 2018 14:47:11 +0100 Subject: [PATCH 1/3] Updated base library version to 6.0.6 --- library/build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/build.gradle b/library/build.gradle index 5e19ab2..b0981b1 100644 --- a/library/build.gradle +++ b/library/build.gradle @@ -27,7 +27,7 @@ repositories { dependencies { implementation "org.jetbrains.kotlin:kotlin-stdlib-jre7:$kotlin_version" - api('com.mikepenz:materialdrawer:6.0.5@aar') { + api('com.mikepenz:materialdrawer:6.0.6@aar') { transitive = true } implementation "com.android.support:appcompat-v7:$support_lib_version" From 7e64270f5028bb6dea74dab0fb9928d3e85cd138 Mon Sep 17 00:00:00 2001 From: zsmb13 Date: Thu, 8 Feb 2018 14:50:01 +0100 Subject: [PATCH 2/3] Release 1.3.3 --- README.md | 2 +- library/build.gradle | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index be59031..c74fb00 100644 --- a/README.md +++ b/README.md @@ -26,7 +26,7 @@ You can find the sample app [in the Play Store](https://play.google.com/store/ap The library is hosted on jcenter. To use it, add the following to your module level `build.gradle` file's dependencies: ```gradle -implementation 'co.zsmb:materialdrawer-kt:1.3.2' +implementation 'co.zsmb:materialdrawer-kt:1.3.3' // required support libraries implementation "com.android.support:appcompat-v7:${versions.supportLib}" diff --git a/library/build.gradle b/library/build.gradle index b0981b1..0d3fba8 100644 --- a/library/build.gradle +++ b/library/build.gradle @@ -6,7 +6,7 @@ apply from: '../testformatter.gradle' ext { PUBLISH_GROUP_ID = 'co.zsmb' PUBLISH_ARTIFACT_ID = 'materialdrawer-kt' - PUBLISH_VERSION = '1.3.2' + PUBLISH_VERSION = '1.3.3' } android { From ec7c955b72d9947c0066999d2ed85427aa82861a Mon Sep 17 00:00:00 2001 From: zsmb13 Date: Thu, 8 Feb 2018 14:53:00 +0100 Subject: [PATCH 3/3] Updated CONTRIBUTING.md --- CONTRIBUTING.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 82a52e9..10a7ab8 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -8,9 +8,10 @@ If you run into a problem while using the library - weird behavior, bug, missing ### Pull requests -If you can fix the problems that you find yourself, you're welcome to create pull requests as well. +If you can fix the problems that you find yourself, you're welcome to create pull requests as well. Some general rules regarding these: +- Create them against the `dev` branch. - Describe the nature of the changes you've made as best you can. -- Be very careful about changing public APIs. +- Be very careful about changing public API.