diff --git a/build.gradle b/build.gradle index 25f97c2..03c19f7 100644 --- a/build.gradle +++ b/build.gradle @@ -1,7 +1,9 @@ +import org.jetbrains.changelog.Changelog + plugins { id 'org.jetbrains.kotlin.jvm' version "2.3.21" id 'org.jetbrains.intellij.platform' version '2.14.0' - id 'org.jetbrains.changelog' version '1.2.1' + id 'org.jetbrains.changelog' version '2.5.0' } apply plugin: 'org.jetbrains.changelog' @@ -40,7 +42,7 @@ intellijPlatform { ideaVersion { sinceBuild.set('253') } - changeNotes.set(provider({changelog.getLatest().toHTML()})) + changeNotes.set(provider({changelog.renderItem(changelog.getLatest(), Changelog.OutputType.HTML)})) } }