diff --git a/CHANGELOG.md b/CHANGELOG.md index ebeba4a..c4e6447 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,5 +3,12 @@ # mdtdd Changelog ## [Unreleased] + +## [0.0.2] - 2024-03-16 + ### Added + - Initial scaffold created from [IntelliJ Platform Plugin Template](https://github.com/JetBrains/intellij-platform-plugin-template) + +[Unreleased]: https://github.com/gon2gon2/mdtdd/compare/v0.0.2...HEAD +[0.0.2]: https://github.com/gon2gon2/mdtdd/commits/v0.0.2 diff --git a/build.gradle.kts b/build.gradle.kts index bf0c939..15f3b5a 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -83,7 +83,7 @@ tasks { val start = "" val end = "" - with (it.lines()) { + with(it.lines()) { if (!containsAll(listOf(start, end))) { throw GradleException("Plugin description section not found in README.md:\n$start ... $end") } @@ -126,6 +126,9 @@ tasks { // The pluginVersion is based on the SemVer (https://semver.org) and supports pre-release labels, like 2.1.7-alpha.3 // Specify pre-release label to publish the plugin in a custom Release Channel automatically. Read more: // https://plugins.jetbrains.com/docs/intellij/deployment.html#specifying-a-release-channel - channels = properties("pluginVersion").map { listOf(it.split('-').getOrElse(1) { "default" }.split('.').first()) } + channels = listOf( + "canary", // pre-release channel + "stable", // default channel + ) } } diff --git a/gradle.properties b/gradle.properties index f2f71ca..97cc98e 100644 --- a/gradle.properties +++ b/gradle.properties @@ -4,7 +4,7 @@ pluginGroup = com.github.gon2gon2.mdtdd pluginName = mdtdd pluginRepositoryUrl = https://github.com/gon2gon2/mdtdd # SemVer format -> https://semver.org -pluginVersion = 0.0.1 +pluginVersion = 0.0.2 # Supported build number ranges and IntelliJ Platform versions -> https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html pluginSinceBuild = 223