From ddba334a751a0e261921720699c23d5601945aea Mon Sep 17 00:00:00 2001 From: Jack Cherng Date: Fri, 9 Aug 2024 20:20:13 +0800 Subject: [PATCH] release: 4.1.9 Signed-off-by: Jack Cherng --- CHANGELOG.md | 4 ++++ plugin/constants.py | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 651fc262..00963b12 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # AutoSetSyntax Changelog +## 4.1.9 + +- fix: some regex rules which use `\b` + ## 4.1.8 - chore: add `typing-extensions` as a dependency diff --git a/plugin/constants.py b/plugin/constants.py index c2053ef0..5cb0c4cf 100644 --- a/plugin/constants.py +++ b/plugin/constants.py @@ -10,7 +10,7 @@ ################################################################################ -VERSION_INFO = (4, 1, 8) +VERSION_INFO = (4, 1, 9) VERSION = ".".join(map(str, VERSION_INFO)) ################################################################################