diff --git a/.goreleaser.yaml b/.goreleaser.yaml index 694172f..4b7cf3f 100644 --- a/.goreleaser.yaml +++ b/.goreleaser.yaml @@ -89,13 +89,13 @@ changelog: - title: "🎉 Features" regexp: '(?i)^.*?feature(\([[:word:]]+\))??!?:.+$' order: 0 - - title: "🐛 Defects" + - title: "🛠 Defects" regexp: '(?i)^.*?defect(\([[:word:]]+\))??!?:.+$' order: 1 - - title: "🛠 Technical Debt" + - title: "⚖️ Technical Debt" regexp: '(?i)^.*?debt(\([[:word:]]+\))??!?:.+$' order: 1 - - title: "🚀 Technical Risk" + - title: "⚠️ Technical Risk" regexp: '(?i)^.*?risk(\([[:word:]]+\))??!?:.+$' order: 1 - title: Others diff --git a/CHANGELOG.md b/CHANGELOG.md index 28a543e..cfdf8f3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -17,6 +17,18 @@ Date format: `YYYY-MM-DD` ### Fixed ### Security +--- +## [0.12.1] - 2026-01-16 + +### Added +### Changed +### Deprecated +### Removed +### Fixed +- **defect:** Fix `all` Make target. + +### Security + --- ## [0.12.0] - 2025-12-17 @@ -191,7 +203,8 @@ Date format: `YYYY-MM-DD` ### Fixed ### Security -[Unreleased]: https://github.com/sixafter/graph/compare/v0.12.0...HEAD +[Unreleased]: https://github.com/sixafter/graph/compare/v0.12.1...HEAD +[0.12.1]: https://github.com/sixafter/graph/compare/v0.12.0...v0.12.1 [0.12.0]: https://github.com/sixafter/graph/compare/v0.11.0...v0.12.0 [0.11.0]: https://github.com/sixafter/graph/compare/v0.10.0...v0.11.0 [0.10.0]: https://github.com/sixafter/graph/compare/v0.9.0...v0.10.0 diff --git a/Makefile b/Makefile index 3b368a9..9b59915 100644 --- a/Makefile +++ b/Makefile @@ -19,7 +19,7 @@ GO_WORK=$(GO_CMD) work GO_WORK_FILE := ./go.work .PHONY: all -all: deps vendor update vendor tidy clean test +all: deps update tidy vendor clean test .PHONY: deps deps: ## Get the dependencies and vendor diff --git a/go.mod b/go.mod index cc6f705..5edbcd3 100644 --- a/go.mod +++ b/go.mod @@ -9,7 +9,7 @@ go 1.25 require ( github.com/stretchr/testify v1.11.1 - golang.org/x/exp v0.0.0-20251209150349-8475f28825e9 + golang.org/x/exp v0.0.0-20260112195511-716be5621a96 ) require ( diff --git a/go.sum b/go.sum index bc1e72c..de44499 100644 --- a/go.sum +++ b/go.sum @@ -4,8 +4,8 @@ github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZb github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/stretchr/testify v1.11.1 h1:7s2iGBzp5EwR7/aIZr8ao5+dra3wiQyKjjFuvgVKu7U= github.com/stretchr/testify v1.11.1/go.mod h1:wZwfW3scLgRK+23gO65QZefKpKQRnfz6sD981Nm4B6U= -golang.org/x/exp v0.0.0-20251209150349-8475f28825e9 h1:MDfG8Cvcqlt9XXrmEiD4epKn7VJHZO84hejP9Jmp0MM= -golang.org/x/exp v0.0.0-20251209150349-8475f28825e9/go.mod h1:EPRbTFwzwjXj9NpYyyrvenVh9Y+GFeEvMNh7Xuz7xgU= +golang.org/x/exp v0.0.0-20260112195511-716be5621a96 h1:Z/6YuSHTLOHfNFdb8zVZomZr7cqNgTJvA8+Qz75D8gU= +golang.org/x/exp v0.0.0-20260112195511-716be5621a96/go.mod h1:nzimsREAkjBCIEFtHiYkrJyT+2uy9YZJB7H1k68CXZU= gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405 h1:yhCVgyC4o1eVCa2tZl7eS0r+SDo693bJlVdllGtEeKM= gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA= diff --git a/vendor/modules.txt b/vendor/modules.txt index 6485fdb..3140b32 100644 --- a/vendor/modules.txt +++ b/vendor/modules.txt @@ -8,7 +8,7 @@ github.com/pmezard/go-difflib/difflib ## explicit; go 1.17 github.com/stretchr/testify/assert github.com/stretchr/testify/assert/yaml -# golang.org/x/exp v0.0.0-20251209150349-8475f28825e9 +# golang.org/x/exp v0.0.0-20260112195511-716be5621a96 ## explicit; go 1.24.0 golang.org/x/exp/constraints # gopkg.in/yaml.v3 v3.0.1