Skip to content

Commit

Permalink
build: allow double-digit minor and patch numbers (#136)
Browse files Browse the repository at this point in the history
  • Loading branch information
sgoudham authored Oct 13, 2024
1 parent 73b9c38 commit ae2a4a9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ intellijPlatform {
version.set(properties("pluginVersion"))
path.set(file("CHANGELOG.md").canonicalPath)
header.set(provider { "${version.get()} - ${date()}" })
headerParserRegex.set("""(\d\.\d\.\d)""".toRegex())
headerParserRegex.set("""(\d\.\d+\.\d+)""".toRegex())
itemPrefix.set("-")
keepUnreleasedSection.set(true)
unreleasedTerm.set("[Unreleased]")
Expand Down

0 comments on commit ae2a4a9

Please sign in to comment.