diff --git a/README.md b/README.md index de1bbbc..5404bc2 100755 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # Semtag Semantic Tagging Script for Git -[Version: v0.0.13] +[Version: v0.1.0] 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 b23d458..7143c8a 100755 --- a/semtag +++ b/semtag @@ -1,7 +1,7 @@ #!/usr/bin/env bash PROG=semtag -PROG_VERSION="v0.0.13" +PROG_VERSION="v0.1.0" 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-]+)*$"