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 @@ -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
Expand Down
15 changes: 14 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -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 (
Expand Down
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -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=
Expand Down
2 changes: 1 addition & 1 deletion vendor/modules.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down