From 2129fdbac2446be838bf869ab6037e12ee46a806 Mon Sep 17 00:00:00 2001 From: Rob Zwissler Date: Tue, 9 Apr 2024 10:08:32 -0700 Subject: [PATCH] bump version --- README.md | 6 +++--- sver | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index d64d68f..525b654 100644 --- a/README.md +++ b/README.md @@ -36,7 +36,7 @@ The `output` output will contain the result, regardless of type (string, boolean with: command: version -- if: steps.sver.outputs.output == 'v1.2.4' +- if: steps.sver.outputs.output == 'v1.2.5' ... ``` Commands that return a boolean will return a boolean-as-string. @@ -88,7 +88,7 @@ asdf global sver latest #### curl You can simply curl a version directly. ```bash -curl -LO https://github.com/robzr/sver/releases/download/v1.2.4/sver +curl -LO https://github.com/robzr/sver/releases/download/v1.2.5/sver ``` #### Homebrew @@ -101,7 +101,7 @@ brew install sver ### Command line usage See `sver help` for documentation. ```text -sver v1.2.4 (https://github.com/robzr/sver) self contained cli tool and function +sver v1.2.5 (https://github.com/robzr/sver) self contained cli tool and function library implementing a Semantic Versioning 2 compliant parser and utilities. Written in optimized, portable, pure Bash (v3)+ for simplicity & speed. diff --git a/sver b/sver index 248ed37..2f0b518 100755 --- a/sver +++ b/sver @@ -3,7 +3,7 @@ # shellcheck disable=SC1008,SC2015,SC2096 # shfmt -i 2 -ci -w -SVER_VERSION=v1.2.4 +SVER_VERSION=v1.2.5 SVER_INTRO="\ sver ${SVER_VERSION} (https://github.com/robzr/sver) self contained cli tool and function library implementing a Semantic Versioning 2 compliant parser and utilities.