fix: Remove getLatest() from changeNotes in patchPluginXml task.

pull/340/head
Blarc 1 year ago
parent 43896299ab
commit 348f619677

@ -87,8 +87,9 @@ tasks {
changeNotes.set(provider {
with(changelog) {
renderItem(
getOrNull(properties("pluginVersion"))
?: runCatching { getLatest() }.getOrElse { getUnreleased() },
getOrNull(properties("pluginVersion")) ?: getUnreleased()
.withHeader(false)
.withEmptySections(false),
Changelog.OutputType.HTML,
)
}

Loading…
Cancel
Save