Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .goreleaser.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,10 @@ builds:
- linux_arm64
- windows_amd64
- windows_arm64
- windows_arm64

archives:
- id: default
builds:
ids:
- blu
name_template: >-
{{ .ProjectName }}-{{- if eq .Os "darwin" -}}macos{{- else if eq .Os "windows" -}}windows{{- else -}}{{ .Os }}{{- end -}}-{{ .Arch }}
Expand All @@ -33,7 +32,8 @@ archives:
- README.md
format_overrides:
- goos: windows
format: zip
formats:
- zip

checksum:
name_template: checksums.txt
Expand Down
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@

## 0.1.4 (Unreleased)

- Release config: update GoReleaser archive fields to current v2 names so `goreleaser check` passes.
- CI: pin Go toolchain to 1.25.10 to clear current standard-library `govulncheck` advisories.

## 0.1.3 (2025-12-17)

- Device selection: accept discovery names for `--device`/`BLU_DEVICE` (no config aliases needed).
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ module github.com/steipete/blucli

go 1.25.0

toolchain go1.25.9
toolchain go1.25.10

require github.com/grandcat/zeroconf v1.0.0

Expand Down
Loading