diff --git a/CHANGELOG.md b/CHANGELOG.md index 69f5fce1..415efd57 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,6 +12,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Updated wiki banner. ### Changed +- Amend always option to git describe. - Updated communications overview picture. - Updated kit purchasing links. - MIN_ERG_CADENCE created and changed from 20 to 30. diff --git a/git_tag_macro.py b/git_tag_macro.py index a420c9cc..f3897eee 100644 --- a/git_tag_macro.py +++ b/git_tag_macro.py @@ -17,7 +17,7 @@ # ) #else: tag = ( - subprocess.check_output(["git", "describe", "--tags"]) + subprocess.check_output(["git", "describe", "--tags", "--always"]) .strip() .decode("utf-8") )