File tree 2 files changed +8
-3
lines changed
2 files changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -11,6 +11,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
11
11
12
12
## [ Unreleased]
13
13
14
+ ## [ v0.53.1] - 2024-06-14
15
+
16
+ ### Fixed
17
+
18
+ - was printing the language before the duration as float
19
+
14
20
## [ v0.53.0] - 2024-06-14
15
21
16
22
### Added
@@ -1204,7 +1210,8 @@ time entry.
1204
1210
- Golang CLI using [ cobra] ( https://github.com/spf13/cobra )
1205
1211
- Makefile to help setup actions
1206
1212
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
1208
1215
[ v0.53.0 ] : https://github.com/lucassabreu/clockify-cli/releases/tag/v0.53.0
1209
1216
[ v0.52.0 ] : https://github.com/lucassabreu/clockify-cli/releases/tag/v0.52.0
1210
1217
[ v0.51.1 ] : https://github.com/lucassabreu/clockify-cli/releases/tag/v0.51.1
Original file line number Diff line number Diff line change @@ -26,8 +26,6 @@ func TimeEntriesTotalDurationOnlyAsFloat(
26
26
timeEntries []dto.TimeEntry , w io.Writer ,
27
27
l language.Tag ) error {
28
28
p := message .NewPrinter (l )
29
- println (l .String ())
30
-
31
29
return timeEntriesTotalDurationOnly (
32
30
func (d time.Duration ) string {
33
31
return p .Sprintf ("%f" , number .Decimal (d .Hours ()))
You can’t perform that action at this time.
0 commit comments