File tree Expand file tree Collapse file tree 6 files changed +25
-15
lines changed
Expand file tree Collapse file tree 6 files changed +25
-15
lines changed Original file line number Diff line number Diff line change 1919 - uses : actions/checkout@v4
2020 - uses : actions/setup-go@v5
2121 with :
22- go-version : 1.19
22+ go-version : 1.24
2323 cache : false
2424 - name : golangci-lint
2525 uses : golangci/golangci-lint-action@v6
Original file line number Diff line number Diff line change 1515 - name : go-setup
1616 uses : actions/setup-go@v5
1717 with :
18- go-version : 1.19
18+ go-version : 1.24
1919 - name : install snapcraft
20- run : |
21- sudo apt-get update
22- sudo apt-get -yq --no-install-suggests --no-install-recommends install snapcraft
23- mkdir -p $HOME/.cache/snapcraft/download
24- mkdir -p $HOME/.cache/snapcraft/stage-packages
20+ uses : samuelmeuli/action-snapcraft@v3
2521 - name : goreleaser-setup
2622 uses : goreleaser/goreleaser-action@v5
2723 with :
Original file line number Diff line number Diff line change 1010
1111 - uses : actions/setup-go@v5
1212 with :
13- go-version : 1.19
13+ go-version : 1.24
1414
1515 - name : Get dependencies
1616 run : |
Original file line number Diff line number Diff line change 1+ version : 2
2+
13builds :
24 - env :
35 - CGO_ENABLED=0
@@ -21,15 +23,15 @@ archives:
2123 {{- if .Arm }}v{{ .Arm }}{{ end -}}
2224 format_overrides :
2325 - goos : windows
24- format : zip
26+ formats : [ zip]
2527 files :
2628 - LICENSE
2729
2830checksum :
2931 name_template : " checksums.txt"
3032
3133snapshot :
32- name_template : " {{ .Tag }}-next"
34+ version_template : " {{ .Tag }}-next"
3335
3436changelog :
3537 sort : asc
@@ -51,13 +53,11 @@ snapcrafts:
5153 clockify-cli :
5254 plugs : ["network"]
5355
54- brews :
56+ homebrew_casks :
5557 - repository :
5658 owner : lucassabreu
5759 name : homebrew-tap
5860 directory : Formula
5961 homepage : https://github.com/lucassabreu/clockify-cli
6062 description : Helps to interact with Clockfy's API
61- test : |
62- system "#{bin}/clockify-cli version"
6363 dependencies :
Original file line number Diff line number Diff line change @@ -11,6 +11,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1111
1212## [ Unreleased]
1313
14+ ## [ v0.54.1] - 2025-06-20
15+
16+ ### Fixed
17+
18+ - when config "show-client" was on, printing time entries without projects were breaking the cli
19+ - goreleaser config deprecations
20+ - installing snapcraft from apt does not work anymore
21+
22+ ### Thanks
23+
24+ Thank you to [ @melluh ] ( https://github.com/melluh ) for fixing the bug
25+ on PR [ #275 ] ( https://github.com/lucassabreu/clockify-cli/pull/275 ) .
26+
1427## [ v0.54.0] - 2024-06-15
1528
1629### Changed
@@ -1216,7 +1229,8 @@ time entry.
12161229- Golang CLI using [ cobra] ( https://github.com/spf13/cobra )
12171230- Makefile to help setup actions
12181231
1219- [ Unreleased ] : https://github.com/lucassabreu/clockify-cli/compare/v0.54.0...HEAD
1232+ [ Unreleased ] : https://github.com/lucassabreu/clockify-cli/compare/v0.54.1...HEAD
1233+ [ v0.54.1 ] : https://github.com/lucassabreu/clockify-cli/releases/tag/v0.54.1
12201234[ v0.54.0 ] : https://github.com/lucassabreu/clockify-cli/releases/tag/v0.54.0
12211235[ v0.53.1 ] : https://github.com/lucassabreu/clockify-cli/releases/tag/v0.53.1
12221236[ v0.53.0 ] : https://github.com/lucassabreu/clockify-cli/releases/tag/v0.53.0
Original file line number Diff line number Diff line change 11module github.com/lucassabreu/clockify-cli
22
3- go 1.19
3+ go 1.24
44
55require (
66 github.com/AlecAivazis/survey/v2 v2.3.7
You can’t perform that action at this time.
0 commit comments