diff --git a/CHANGELOG.md b/CHANGELOG.md index e36f6b9c..0c89f323 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [v0.19.1] - 2021-07-19 + +### Fixed + +- `README` now contains updated help output. +- `edit-multiple` help should be capitalized. + ## [v0.19.0] - 2021-07-19 ### Added diff --git a/README.md b/README.md index 8c0e9474..afaf6f38 100644 --- a/README.md +++ b/README.md @@ -130,23 +130,24 @@ Usage: clockify-cli [command] Available Commands: - clone Copy a time entry and starts it (use "last" to copy the last one) - completion Generate completion script - config Manages configuration file parameters - delete Delete a time entry, use id "current" to apply to time entry in progress - edit Edit a time entry, use id "current" to apply to time entry in progress - gendocs Generate Markdown documentation for the clockify-cli. - help Help about any command - in Create a new time entry and starts it (will close time entries not closed) - log List the entries from a specific day - manual Creates a new completed time entry (does not stop on-going time entries) - me Show the user info - out Stops the last time entry - project List projects from a workspace - report List all time entries in the date ranges and with more data (format date as 2016-01-02) - tags List tags of workspace - version Version of the command - workspaces List user's workspaces + clone Copy a time entry and starts it (use "last" to copy the last one) + completion Generate completion script + config Manages configuration file parameters + delete Delete a time entry, use id "current" to apply to time entry in progress + edit Edit a time entry, use id "current" to apply to time entry in progress + edit-multiple Edit multiple time entries at once, use id "current"/"last" to apply to time entry in progress. + gendocs Generate Markdown documentation for the clockify-cli. + help Help about any command + in Create a new time entry and starts it (will close time entries not closed) + log List the entries from a specific day + manual Creates a new completed time entry (does not stop on-going time entries) + me Show the user info + out Stops the last time entry + project List projects from a workspace + report List all time entries in the date ranges and with more data (format date as 2016-01-02) + tags List tags of workspace + version Version of the command + workspace List user's workspaces Flags: --allow-project-name allow use of project name when id is asked (defaults to env $CLOCKIFY_ALLOW_PROJECT_NAME) diff --git a/cmd/editMultiple.go b/cmd/editMultiple.go index ea3516f6..90681440 100644 --- a/cmd/editMultiple.go +++ b/cmd/editMultiple.go @@ -31,7 +31,7 @@ var editMultipleCmd = &cobra.Command{ Aliases: []string{"update-multiple", "multi-edit", "multi-update", "mult-edit", "mult-update"}, Args: cobra.MinimumNArgs(2), ValidArgs: []string{"last", "current"}, - Short: `edit multiple time entries at once, use id "current"/"last" to apply to time entry in progress.`, + Short: `Edit multiple time entries at once, use id "current"/"last" to apply to time entry in progress.`, Long: `edit multiple time entries at once, use id "current"/"last" to apply to time entry in progress. When multiple IDs are informed the default values on interactive mode will be the values of the first time entry informed. When using interactive mode all entries will end with the same properties except for Start and End, if you wanna edit only some properties, than use the flags without interactive mode.