Skip to content

Commit bab5dae

Browse files
committed
prepare next version
1 parent 688c21c commit bab5dae

File tree

4 files changed

+20
-3
lines changed

4 files changed

+20
-3
lines changed

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Change Log
22

3+
## Version 1.6.0 (2022-04-27)
4+
5+
* [#108](https://github.com/jaredsburrows/gradle-spoon-plugin/pull/108) Gradle Configuration Cache
6+
* [#92](https://github.com/jaredsburrows/gradle-spoon-plugin/pull/92) Remove upToDateWhen
7+
38
## Version 1.5.1 (2021-01-05)
49

510
* [#54](https://github.com/jaredsburrows/gradle-spoon-plugin/pull/54) Use Gradle's ConsoleRenderer

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ buildscript {
1818
}
1919
2020
dependencies {
21-
classpath 'com.jaredsburrows:gradle-spoon-plugin:1.5.1'
21+
classpath 'com.jaredsburrows:gradle-spoon-plugin:1.6.0'
2222
}
2323
}
2424
@@ -47,7 +47,7 @@ buildscript {
4747
}
4848
4949
dependencies {
50-
classpath 'com.jaredsburrows:gradle-spoon-plugin:1.6.0-SNAPSHOT'
50+
classpath 'com.jaredsburrows:gradle-spoon-plugin:1.6.1-SNAPSHOT'
5151
}
5252
}
5353

gradle-spoon-plugin/build.gradle

+12
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,18 @@ dependencies {
4848
testImplementation deps.junit
4949
}
5050

51+
pluginBundle {
52+
website = POM_URL
53+
vcsUrl = POM_URL
54+
description = POM_DESCRIPTION
55+
tags = ['spoon']
56+
57+
plugins {
58+
spoonPlugin {
59+
displayName = POM_NAME
60+
}
61+
}
62+
}
5163
gradlePlugin {
5264
plugins {
5365
spoonPlugin {

gradle.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
GROUP=com.jaredsburrows
2-
VERSION_NAME=1.6.0-SNAPSHOT
2+
VERSION_NAME=1.6.1-SNAPSHOT
33

44
POM_INCEPTION_YEAR=2017
55
POM_PACKAGING=jar

0 commit comments

Comments
 (0)