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