diff --git a/CHANGELOG.md b/CHANGELOG.md index a1bf839..70a0f72 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,6 @@ +# 5.3.1 +- Fix: Added documentation for `mob start --discard-uncommitted-changes` in the `mob help` command + # 5.3.0 - Feature: `mob start --discard-uncommitted-changes` allows to discard uncommitted changes and then starting a new mob session diff --git a/README.md b/README.md index 9a28121..45c0683 100644 --- a/README.md +++ b/README.md @@ -175,6 +175,7 @@ Basic Commands: Basic Commands(Options): start [] Start a timer [--include-uncommitted-changes|-i] Move uncommitted changes to wip branch + [--discard-uncommitted-changes|-d] Discard uncommitted changes [--branch|-b ] Set wip branch to 'mob/-' [--create] Create the remote branch [--room ] Set room name for timer.mob.sh once diff --git a/help/help.go b/help/help.go index 0a6c8dc..1370e56 100644 --- a/help/help.go +++ b/help/help.go @@ -18,6 +18,7 @@ Basic Commands: Basic Commands with Options: start [] Start minutes timer [--include-uncommitted-changes|-i] Move uncommitted changes to wip branch + [--discard-uncommitted-changes|-d] Discard uncommitted changes [--branch|-b ] Set wip branch to 'mob/` + configuration.WipBranchQualifierSeparator + `' [--create] Create the remote branch [--join|-j] Join existing wip branch diff --git a/mob.go b/mob.go index ad57ea4..6235bf4 100644 --- a/mob.go +++ b/mob.go @@ -21,7 +21,7 @@ import ( ) const ( - versionNumber = "5.3.0" + versionNumber = "5.3.1" minimumGitVersion = "2.13.0" )