From f0f64d25cd574e7502ef800e7e1e876ffce288f0 Mon Sep 17 00:00:00 2001 From: Ismo Vuorinen Date: Wed, 10 Sep 2025 01:39:23 +0300 Subject: [PATCH] chore: bump version to 2.0.2 --- bin/shellspec-format | 10 +++++----- lua/shellspec/init.lua | 2 +- plugin/shellspec.vim | 2 +- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/bin/shellspec-format b/bin/shellspec-format index 47da1a0..b3fc6d8 100755 --- a/bin/shellspec-format +++ b/bin/shellspec-format @@ -17,7 +17,7 @@ STATE_HEREDOC=2 # Usage information usage() { cat <<'EOF' -Usage: shellspec-format [OPTIONS] [FILE...] +Usage: shellspec-format 2.0.2[OPTIONS] [FILE...] Enhanced ShellSpec DSL formatter with HEREDOC preservation and smart comment indentation. @@ -33,15 +33,15 @@ If no files are specified, reads from stdin and writes to stdout. If files are specified, formats them in place. EXAMPLES: - shellspec-format < input.spec.sh > output.spec.sh - shellspec-format file1.spec.sh file2.spec.sh - cat file.spec.sh | shellspec-format --indent-size 4 --tabs + shellspec-format 2.0.2< input.spec.sh > output.spec.sh + shellspec-format 2.0.2file1.spec.sh file2.spec.sh + cat file.spec.sh | shellspec-format 2.0.2--indent-size 4 --tabs EOF } version() { - echo "shellspec-format 2.0.1" + echo "shellspec-format 2.0.2" echo "Part of nvim-shellspec plugin" } diff --git a/lua/shellspec/init.lua b/lua/shellspec/init.lua index 6de473e..48f9e21 100644 --- a/lua/shellspec/init.lua +++ b/lua/shellspec/init.lua @@ -7,7 +7,7 @@ local format = require("shellspec.format") local autocmds = require("shellspec.autocmds") -- Version info -M._VERSION = "2.0.1" +M._VERSION = "2.0.2" -- Setup function for Lua configuration function M.setup(opts) diff --git a/plugin/shellspec.vim b/plugin/shellspec.vim index a27212f..14c5f19 100644 --- a/plugin/shellspec.vim +++ b/plugin/shellspec.vim @@ -9,7 +9,7 @@ endif let g:loaded_shellspec = 1 " Version information -let g:shellspec_version = '2.0.1' +let g:shellspec_version = '2.0.2' " Detect Neovim and use appropriate implementation if has('nvim-0.7')