chore: bump version to 2.0.2

This commit is contained in:
2025-09-10 01:39:23 +03:00
parent 5b9b4e4492
commit f0f64d25cd
3 changed files with 7 additions and 7 deletions

View File

@@ -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"
}