diff --git a/CHANGELOG.md b/CHANGELOG.md index c191bdde..bf0d2048 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # AutoSetSyntax Changelog +## 2.11.17 + +- chore: add rule for Python `requirements.txt` files +- chore: add rule for SSH config files + ## 2.11.16 - chore: assign `Bash` syntax for `# shellcheck shell=sh` first line diff --git a/plugin/constants.py b/plugin/constants.py index 7a224f54..6709b5f0 100644 --- a/plugin/constants.py +++ b/plugin/constants.py @@ -8,7 +8,7 @@ ################################################################################ -VERSION_INFO = (2, 11, 16) +VERSION_INFO = (2, 11, 17) VERSION = ".".join(map(str, VERSION_INFO)) ################################################################################