Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions third_party/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## Unreleased
## 500.0.0

### Added

Expand All @@ -13,8 +13,7 @@
### Changed

- Vendor change from "JetBrains" to "Google"
- Build system change from Basel to Gradle

- Build system change from Bazel to Gradle

## 251.27812.12

Expand Down
4 changes: 3 additions & 1 deletion third_party/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import org.jetbrains.changelog.Changelog
import org.jetbrains.intellij.platform.gradle.IntelliJPlatformType
import org.jetbrains.intellij.platform.gradle.TestFrameworkType
import org.jetbrains.intellij.platform.gradle.models.ProductRelease
Expand All @@ -18,6 +19,7 @@ plugins {
id("java") // Java support
id("org.jetbrains.kotlin.jvm") version "2.2.21" // Kotlin support
id("org.jetbrains.intellij.platform") version "2.10.3" // IntelliJ Platform Gradle Plugin
id("org.jetbrains.changelog") version "2.2.0" // Gradle Changelog Plugin
}

// Configure project's dependencies
Expand All @@ -39,7 +41,7 @@ intellijPlatform {
untilBuild = providers.gradleProperty("pluginUntilBuild")
}
changeNotes = provider {
file("CHANGELOG.md").readText(Charsets.UTF_8)
project.changelog.render(Changelog.OutputType.HTML)
}
}
pluginVerification {
Expand Down
Loading