From 947317b4a2d2e26f4776881a37c21fb2b43e64b1 Mon Sep 17 00:00:00 2001 From: Jack Cherng Date: Fri, 17 Nov 2023 20:30:19 +0800 Subject: [PATCH] release: 2.11.16 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 ae464a22..c191bdde 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # AutoSetSyntax Changelog +## 2.11.16 + +- chore: assign `Bash` syntax for `# shellcheck shell=sh` first line + ## 2.11.15 - fix: `syntax.name` maybe an empty string diff --git a/plugin/constants.py b/plugin/constants.py index 98c3013d..7a224f54 100644 --- a/plugin/constants.py +++ b/plugin/constants.py @@ -8,7 +8,7 @@ ################################################################################ -VERSION_INFO = (2, 11, 14) +VERSION_INFO = (2, 11, 16) VERSION = ".".join(map(str, VERSION_INFO)) ################################################################################