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 934ee40..4c0073b 100644 --- a/README.md +++ b/README.md @@ -52,7 +52,7 @@ buildscript { jcenter() } dependencies { - classpath 'com.novoda:gradle-static-analysis-plugin:1.0' + 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 '1.0' + id 'com.novoda.static-analysis' version '1.1' } ``` @@ -107,8 +107,8 @@ 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. It 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 +This project is routinely used by many Novoda projects and by other external projects with no known critical issues. + +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'