diff --git a/CHANGELOG.md b/CHANGELOG.md index a3fa43f..43191e5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Change Log +## Version 1.6.0 (2022-04-27) + +* [#108](https://github.com/jaredsburrows/gradle-spoon-plugin/pull/108) Gradle Configuration Cache +* [#92](https://github.com/jaredsburrows/gradle-spoon-plugin/pull/92) Remove upToDateWhen + ## Version 1.5.1 (2021-01-05) * [#54](https://github.com/jaredsburrows/gradle-spoon-plugin/pull/54) Use Gradle's ConsoleRenderer diff --git a/README.md b/README.md index 8b4c497..7079076 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ buildscript { } dependencies { - classpath 'com.jaredsburrows:gradle-spoon-plugin:1.5.1' + classpath 'com.jaredsburrows:gradle-spoon-plugin:1.6.0' } } @@ -47,7 +47,7 @@ buildscript { } dependencies { - classpath 'com.jaredsburrows:gradle-spoon-plugin:1.6.0-SNAPSHOT' + classpath 'com.jaredsburrows:gradle-spoon-plugin:1.6.1-SNAPSHOT' } } diff --git a/gradle-spoon-plugin/build.gradle b/gradle-spoon-plugin/build.gradle index 0ac104c..be55dc1 100644 --- a/gradle-spoon-plugin/build.gradle +++ b/gradle-spoon-plugin/build.gradle @@ -48,6 +48,18 @@ dependencies { testImplementation deps.junit } +pluginBundle { + website = POM_URL + vcsUrl = POM_URL + description = POM_DESCRIPTION + tags = ['spoon'] + + plugins { + spoonPlugin { + displayName = POM_NAME + } + } +} gradlePlugin { plugins { spoonPlugin { diff --git a/gradle.properties b/gradle.properties index d013e3e..811caf4 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,5 +1,5 @@ GROUP=com.jaredsburrows -VERSION_NAME=1.6.0-SNAPSHOT +VERSION_NAME=1.6.1-SNAPSHOT POM_INCEPTION_YEAR=2017 POM_PACKAGING=jar