Skip to content

Commit

Permalink
release: v0.53.1
Browse files Browse the repository at this point in the history
  • Loading branch information
lucassabreu committed Jun 14, 2024
1 parent 26f1302 commit a292ee7
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [v0.53.1] - 2024-06-14

### Fixed

- was printing the language before the duration as float

## [v0.53.0] - 2024-06-14

### Added
Expand Down Expand Up @@ -1204,7 +1210,8 @@ time entry.
- Golang CLI using [cobra](https://github.com/spf13/cobra)
- Makefile to help setup actions

[Unreleased]: https://github.com/lucassabreu/clockify-cli/compare/v0.53.0...HEAD
[Unreleased]: https://github.com/lucassabreu/clockify-cli/compare/v0.53.1...HEAD
[v0.53.1]: https://github.com/lucassabreu/clockify-cli/releases/tag/v0.53.1
[v0.53.0]: https://github.com/lucassabreu/clockify-cli/releases/tag/v0.53.0
[v0.52.0]: https://github.com/lucassabreu/clockify-cli/releases/tag/v0.52.0
[v0.51.1]: https://github.com/lucassabreu/clockify-cli/releases/tag/v0.51.1
Expand Down
2 changes: 0 additions & 2 deletions pkg/output/time-entry/duration.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,6 @@ func TimeEntriesTotalDurationOnlyAsFloat(
timeEntries []dto.TimeEntry, w io.Writer,
l language.Tag) error {
p := message.NewPrinter(l)
println(l.String())

return timeEntriesTotalDurationOnly(
func(d time.Duration) string {
return p.Sprintf("%f", number.Decimal(d.Hours()))
Expand Down

0 comments on commit a292ee7

Please sign in to comment.