Skip to content

Commit

Permalink
(release): v0.19.1
Browse files Browse the repository at this point in the history
  • Loading branch information
lucassabreu committed Jul 19, 2021
1 parent 4c9cd67 commit a3e0fb9
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 18 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
35 changes: 18 additions & 17 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion cmd/editMultiple.go
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit a3e0fb9

Please sign in to comment.