File tree Expand file tree Collapse file tree 2 files changed +16
-1
lines changed Expand file tree Collapse file tree 2 files changed +16
-1
lines changed Original file line number Diff line number Diff line change @@ -2,6 +2,7 @@ import com.fasterxml.jackson.annotation.JsonIgnoreProperties
22import com.fasterxml.jackson.annotation.JsonProperty
33import com.fasterxml.jackson.module.kotlin.jacksonObjectMapper
44import org.gradle.internal.classpath.Instrumented.systemProperty
5+ import org.jetbrains.changelog.Changelog
56import org.jetbrains.changelog.markdownToHTML
67import org.jetbrains.intellij.platform.gradle.TestFrameworkType
78import java.net.URL
@@ -113,6 +114,20 @@ intellijPlatform {
113114 }
114115 }
115116
117+ val changelog = project.changelog
118+ changeNotes =
119+ version
120+ .map { pluginVersion ->
121+ with (changelog) {
122+ renderItem(
123+ (getOrNull(pluginVersion) ? : getUnreleased())
124+ .withHeader(false )
125+ .withEmptySections(false ),
126+ Changelog .OutputType .HTML ,
127+ )
128+ }
129+ }
130+
116131 ideaVersion {
117132 sinceBuild = providers.gradleProperty(" pluginSinceBuild" )
118133 untilBuild = providers.gradleProperty(" pluginUntilBuild" )
Original file line number Diff line number Diff line change 11pluginGroup = org.domaframework.doma.intellij
22pluginName = Doma Tools for IntelliJ
33pluginRepositoryUrl = https://github.com/domaframework/doma-tools-for-intellij
4- pluginVersion = 0.6.1-beta
4+ pluginVersion = 0.6.0
55
66pluginSinceBuild =231
77
You can’t perform that action at this time.
0 commit comments