Compare commits

...

2 Commits

Author SHA1 Message Date
sudo pacman -Syu 5667fc1d13 chore: go fix 2023-12-21 03:22:12 +07:00
sudo pacman -Syu f691f75871 chore(changelog): generate v0.6.8 2023-12-21 03:20:20 +07:00
2 changed files with 14 additions and 1 deletions

View File

@ -1,5 +1,17 @@
# CHANGELOG
## v0.6.8 (2023-12-21)
### Others
- chore(deps): bump actions/setup-go from 4 to 5 (2023-12-07)
- chore(deps): bump github.com/urfave/cli/v2 from 2.25.7 to 2.26.0 (2023-12-04)
- build: bump go-github v57 (2023-12-02)
- chore(changelog): generate v0.6.7 (2023-11-29)
## v0.6.7 (2023-11-29)
### Others

View File

@ -2,9 +2,9 @@
all:
go mod tidy
$(MAKE) format
$(MAKE) test-color
$(MAKE) lint
$(MAKE) format
$(MAKE) build
$(MAKE) clean
@ -13,6 +13,7 @@ test-color:
go-test-color -race -failfast ./...
lint:
go fix ./...
golangci-lint run ./...
format: