Skip to content

Commit a9562b6

Browse files
committed
chore: remove changelog task
1 parent dbae6b8 commit a9562b6

File tree

3 files changed

+39
-24
lines changed

3 files changed

+39
-24
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,12 @@
33
# Call Changelog
44

55
## [Unreleased]
6+
7+
## [2025.1.0] - 2025-12-16
8+
69
### Added
10+
711
- Initial scaffold created from [IntelliJ Platform Plugin Template](https://github.com/JetBrains/intellij-platform-plugin-template)
12+
13+
[Unreleased]: https://github.com/j-plugins/inline-call-plugin/compare/v2025.1.0...HEAD
14+
[2025.1.0]: https://github.com/j-plugins/inline-call-plugin/commits/v2025.1.0

build.gradle.kts

Lines changed: 0 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
import org.jetbrains.changelog.Changelog
21
import org.jetbrains.changelog.markdownToHTML
32
import org.jetbrains.intellij.platform.gradle.TestFrameworkType
43

@@ -70,19 +69,6 @@ intellijPlatform {
7069
}
7170
}
7271

73-
val changelog = project.changelog // local variable for configuration cache compatibility
74-
// Get the latest available change notes from the changelog file
75-
changeNotes = providers.gradleProperty("pluginVersion").map { pluginVersion ->
76-
with(changelog) {
77-
renderItem(
78-
(getOrNull(pluginVersion) ?: getUnreleased())
79-
.withHeader(false)
80-
.withEmptySections(false),
81-
Changelog.OutputType.HTML,
82-
)
83-
}
84-
}
85-
8672
ideaVersion {
8773
sinceBuild = providers.gradleProperty("pluginSinceBuild")
8874
}
@@ -109,12 +95,6 @@ intellijPlatform {
10995
}
11096
}
11197

112-
// Configure Gradle Changelog Plugin - read more: https://github.com/JetBrains/gradle-changelog-plugin
113-
changelog {
114-
groups.empty()
115-
repositoryUrl = providers.gradleProperty("pluginRepositoryUrl")
116-
}
117-
11898
// Configure Gradle Kover Plugin - read more: https://kotlin.github.io/kotlinx-kover/gradle-plugin/#configuration-details
11999
kover {
120100
reports {
@@ -130,10 +110,6 @@ tasks {
130110
wrapper {
131111
gradleVersion = providers.gradleProperty("gradleVersion").get()
132112
}
133-
134-
publishPlugin {
135-
dependsOn(patchChangelog)
136-
}
137113
}
138114

139115
intellijPlatformTesting {
Lines changed: 32 additions & 0 deletions
Loading

0 commit comments

Comments
 (0)