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)) ################################################################################