From c13e6e1e6afb52fcf966941a02e16750de3e0ed8 Mon Sep 17 00:00:00 2001 From: Jack Cherng Date: Sun, 4 Feb 2024 16:17:43 +0800 Subject: [PATCH] release: 2.11.17 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 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)) ################################################################################