We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bcc3e08 commit 9f8b53fCopy full SHA for 9f8b53f
1 file changed
build.gradle
@@ -256,12 +256,12 @@ tasks.withType(JavaCompile).configureEach {
256
options.encoding = 'UTF-8' // Use the UTF-8 charset for Java compilation
257
}
258
259
-def changelogGet() {
+String changelogGet() {
260
var vals = rootProject.file("CHANGELOG.md").readLines()
261
do {
262
vals.drop(1)
263
} while(!vals.first().startsWith("## "))
264
- vals.takeWhile { !it.startsWith("## ") }.join("/n").trim()
+ return vals.takeWhile { !it.startsWith("## ") }.join("/n").trim()
265
266
267
publishMods {
0 commit comments