From 32d0f9149aa624c8b6803d3220f38d6645d9b5c2 Mon Sep 17 00:00:00 2001 From: Niklas Baudy Date: Thu, 30 Aug 2018 17:53:18 +0200 Subject: [PATCH] Prepare version 0.13.0 --- CHANGELOG.md | 12 ++++++++++-- README.md | 2 +- build.gradle | 3 +-- gradle.properties | 2 +- 4 files changed, 13 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 00abb89..daa5e03 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,15 @@ # Change Log -Version 0.13.0 *(In development)* ---------------------------------- +Version 0.13.0 *(2018-08-30)* +----------------------------- + +- Detekt: Ignore build directory. [\#148](https://github.com/vanniktech/gradle-code-quality-tools-plugin/pull/148) ([vanniktech](https://github.com/vanniktech)) +- Detekt: Add Kotlin Script file support. [\#147](https://github.com/vanniktech/gradle-code-quality-tools-plugin/pull/147) ([vanniktech](https://github.com/vanniktech)) +- Add checkDependencies extension point for Lint. [\#146](https://github.com/vanniktech/gradle-code-quality-tools-plugin/pull/146) ([vanniktech](https://github.com/vanniktech)) +- Apply LintPlugin to Java projects to leverage lint from non-android projects. [\#145](https://github.com/vanniktech/gradle-code-quality-tools-plugin/pull/145) ([vanniktech](https://github.com/vanniktech)) +- Add checkTestSources extension point for Lint. [\#144](https://github.com/vanniktech/gradle-code-quality-tools-plugin/pull/144) ([vanniktech](https://github.com/vanniktech)) +- Update Gradle Wrapper to 4.9 [\#143](https://github.com/vanniktech/gradle-code-quality-tools-plugin/pull/143) ([vanniktech](https://github.com/vanniktech)) +- Regression: Run detektCheck as part of check task. [\#140](https://github.com/vanniktech/gradle-code-quality-tools-plugin/pull/140) ([vanniktech](https://github.com/vanniktech)) Version 0.12.0 *(2018-06-24)* ----------------------------- diff --git a/README.md b/README.md index 0a4c5fc..bcb4c28 100755 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ buildscript { gradlePluginPortal() } dependencies { - classpath "com.vanniktech:gradle-code-quality-tools-plugin:0.12.0" + classpath "com.vanniktech:gradle-code-quality-tools-plugin:0.13.0" } } diff --git a/build.gradle b/build.gradle index 0f47add..12330e4 100755 --- a/build.gradle +++ b/build.gradle @@ -107,8 +107,7 @@ pluginBundle { vcsUrl = POM_SCM_URL plugins { - codeQualityTools { - id = 'com.vanniktech.code.quality.tools' + codeQualityToolsPlugin { displayName = POM_NAME tags = ['gradle', 'android', 'java', 'findbugs', 'pmd', 'cpd', 'detekt', 'kotlin', 'ktlint', 'checkstyle', 'errorprone', 'multiprojects', 'app module', 'library module', 'lint'] description = POM_DESCRIPTION diff --git a/gradle.properties b/gradle.properties index 9ba4be9..e9030be 100755 --- a/gradle.properties +++ b/gradle.properties @@ -1,5 +1,5 @@ GROUP=com.vanniktech -VERSION_NAME=0.13.0-SNAPSHOT +VERSION_NAME=0.13.0 POM_ARTIFACT_ID=gradle-code-quality-tools-plugin POM_NAME=Gradle Code Quality Tools Plugin