From 48c24a01a550fe9e29d8bda12995fc7b5474850d Mon Sep 17 00:00:00 2001 From: Jack Cherng Date: Fri, 16 Feb 2024 21:49:25 +0800 Subject: [PATCH] release: 2.11.18 Signed-off-by: Jack Cherng --- CHANGELOG.md | 5 +++++ plugin/constants.py | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index bf0d2048..eee77271 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # AutoSetSyntax Changelog +## 2.11.18 + +- chore: match "requirements.in" as Python `requirements.txt` +- chore: rename "special cases" to "heuristics" + ## 2.11.17 - chore: add rule for Python `requirements.txt` files diff --git a/plugin/constants.py b/plugin/constants.py index 6709b5f0..bce2a959 100644 --- a/plugin/constants.py +++ b/plugin/constants.py @@ -8,7 +8,7 @@ ################################################################################ -VERSION_INFO = (2, 11, 17) +VERSION_INFO = (2, 11, 18) VERSION = ".".join(map(str, VERSION_INFO)) ################################################################################