From 406327e557cfe993e951e4ba3423a93bb20dbeab Mon Sep 17 00:00:00 2001 From: Said Tahsin Dane Date: Mon, 21 Oct 2019 23:09:54 +0200 Subject: [PATCH] Prepare for version 1.1 --- CHANGELOG.md | 8 ++++++++ README.md | 10 ++++------ gradle/publish.gradle | 2 +- 3 files changed, 13 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b74ffa6..9baf757 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,14 @@ Change Log ========== +[Version 1.1](https://github.com/novoda/gradle-static-analysis-plugin/releases/tag/v1.1) +-------------------------- + +- Add support for Ktlint Plugin: `9.0.0`. Thanks [Adam McNeilly](https://github.com/AdamMc331) for the contribution [PR#202](https://github.com/novoda/gradle-static-analysis-plugin/pull/202) +- Update project to use Gradle 5.6.3. [PR#203](https://github.com/novoda/gradle-static-analysis-plugin/pull/203) + - Note: Minimum supported Gradle version is still 4.x (tested with 4.3.1) +- Update docs [PR#194](https://github.com/novoda/gradle-static-analysis-plugin/pull/194) + [Version 1.0](https://github.com/novoda/gradle-static-analysis-plugin/releases/tag/v1.0) -------------------------- diff --git a/README.md b/README.md index fa05371..c0bb0f4 100644 --- a/README.md +++ b/README.md @@ -52,7 +52,7 @@ buildscript { jcenter() } dependencies { - classpath 'com.novoda:gradle-static-analysis-plugin:0.8' + classpath 'com.novoda:gradle-static-analysis-plugin:1.1' } } @@ -63,7 +63,7 @@ or from the [Gradle Plugins Repository](https://plugins.gradle.org/): ```gradle plugins { - id 'com.novoda.static-analysis' version '0.8' + id 'com.novoda.static-analysis' version '1.1' } ``` @@ -107,9 +107,7 @@ repositories { You can find the latest snapshot version following this [link](https://bintray.com/novoda-oss/snapshots/gradle-static-analysis-plugin/_latestVersion). ## Roadmap -The plugin is under active development and to be considered in **beta stage**. It is routinely used by many Novoda projects and -by other external projects with no known critical issues. The API is supposed to be relatively stable, but there still may be -breaking changes as we move towards version 1.0. +This project is routinely used by many Novoda projects and by other external projects with no known critical issues. -Future improvements can be found on the repository's +Future improvements and new tool integrations can be found on the repository's [issue tracker](https://github.com/novoda/gradle-static-analysis-plugin/issues?q=is%3Aopen+is%3Aissue+label%3Aenhancement). diff --git a/gradle/publish.gradle b/gradle/publish.gradle index 23356b9..198cbae 100644 --- a/gradle/publish.gradle +++ b/gradle/publish.gradle @@ -2,7 +2,7 @@ ext { websiteUrl = 'https://github.com/novoda/gradle-static-analysis-plugin' } -version = '1.0' +version = '1.1' groovydoc.docTitle = 'Static Analysis Plugin' apply plugin: 'com.novoda.build-properties'