diff --git a/README.md b/README.md index d221a19..2f56719 100755 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # Semtag Semantic Tagging Script for Git -[Version: v0.0.4] +[Version: v0.0.5] Notes: *This script is inspired by the [Nebula Release Plugin](https://github.com/nebula-plugins/nebula-release-plugin), and borrows a couple of lines from [Semver Bash Tool](https://github.com/fsaintjacques/semver-tool) (mostly the version comparison and the semantic version regex).* diff --git a/semtag b/semtag index 87a533e..7965ff8 100755 --- a/semtag +++ b/semtag @@ -1,7 +1,7 @@ #!/usr/bin/env bash PROG=semtag -PROG_VERSION="v0.0.4" +PROG_VERSION="v0.0.5" SEMVER_REGEX="^v?(0|[1-9][0-9]*)\.(0|[1-9][0-9]*)\.(0|[1-9][0-9]*)(\-[0-9A-Za-z-]+(\.[0-9A-Za-z-]+)*)?(\+[0-9A-Za-z-]+(\.[0-9A-Za-z-]+)*)?$" IDENTIFIER_REGEX="^\-([0-9A-Za-z-]+)\.([0-9A-Za-z-]+)*$"