Skip to content

Commit a292ee7

Browse files
committed
release: v0.53.1
1 parent 26f1302 commit a292ee7

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

CHANGELOG.md

+8-1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1111

1212
## [Unreleased]
1313

14+
## [v0.53.1] - 2024-06-14
15+
16+
### Fixed
17+
18+
- was printing the language before the duration as float
19+
1420
## [v0.53.0] - 2024-06-14
1521

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

1207-
[Unreleased]: https://github.com/lucassabreu/clockify-cli/compare/v0.53.0...HEAD
1213+
[Unreleased]: https://github.com/lucassabreu/clockify-cli/compare/v0.53.1...HEAD
1214+
[v0.53.1]: https://github.com/lucassabreu/clockify-cli/releases/tag/v0.53.1
12081215
[v0.53.0]: https://github.com/lucassabreu/clockify-cli/releases/tag/v0.53.0
12091216
[v0.52.0]: https://github.com/lucassabreu/clockify-cli/releases/tag/v0.52.0
12101217
[v0.51.1]: https://github.com/lucassabreu/clockify-cli/releases/tag/v0.51.1

pkg/output/time-entry/duration.go

-2
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,6 @@ func TimeEntriesTotalDurationOnlyAsFloat(
2626
timeEntries []dto.TimeEntry, w io.Writer,
2727
l language.Tag) error {
2828
p := message.NewPrinter(l)
29-
println(l.String())
30-
3129
return timeEntriesTotalDurationOnly(
3230
func(d time.Duration) string {
3331
return p.Sprintf("%f", number.Decimal(d.Hours()))

0 commit comments

Comments
 (0)