1
0
mirror of https://github.com/chylex/IntelliJ-IdeaVim.git synced 2025-02-25 02:46:01 +01:00

Fix regex for changelog plugin

This commit is contained in:
Alex Plate 2022-08-12 10:14:31 +03:00
parent 43767b8500
commit e42b4d0ea3
No known key found for this signature in database
GPG Key ID: 0B97153C8FFEC09F
2 changed files with 2 additions and 6 deletions

View File

@ -23,11 +23,6 @@ It is important to distinguish EAP from traditional pre-release software.
Please note that the quality of EAP versions may at times be way below even
usual beta standards.
## To Be Released
### Fixes:
* [VIM-2728](https://youtrack.jetbrains.com/issue/VIM-2728) Give access to global variables
## 1.11.0, 2022-08-09
### Features:
@ -65,6 +60,7 @@ usual beta standards.
* [VIM-2710](https://youtrack.jetbrains.com/issue/VIM-2710) Show options value on `set opt`
* [VIM-913](https://youtrack.jetbrains.com/issue/VIM-913) Partially fix the issue with macros and autocompletion
* [VIM-2723](https://youtrack.jetbrains.com/issue/VIM-2723) Move focus to editor after :q
* [VIM-2728](https://youtrack.jetbrains.com/issue/VIM-2728) Give access to global variables
### Merged PRs:
* [468](https://github.com/JetBrains/ideavim/pull/468) by [Thomas Schouten](https://github.com/PHPirates): Implement UserDataHolder for EditorDataContext

View File

@ -275,7 +275,7 @@ changelog {
itemPrefix.set("*")
path.set("${project.projectDir}/CHANGES.md")
unreleasedTerm.set("To Be Released")
headerParserRegex.set("\\d\\.\\d+(.\\d+)?".toRegex())
headerParserRegex.set("(\\d\\.\\d+(.\\d+)?)".toRegex())
// header = { "${project.version}" }
// version = "0.60"
}