Skip to content
Closed
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
4 changes: 4 additions & 0 deletions .github/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
changelog:
exclude:
labels:
- tagpr
1 change: 1 addition & 0 deletions .tagpr
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,4 @@
releaseBranch = main
release = draft
changelog = true
versionFile = internal/history/store.go
24 changes: 24 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# Changelog

## [v0.0.1](https://github.com/sivchari/gomu/commits/v0.0.1) - 2026-02-20
- handle mutation by @sivchari in https://github.com/sivchari/gomu/pull/1
- Introduce suite test by @sivchari in https://github.com/sivchari/gomu/pull/2
- implement HTML report generation with text/template by @sivchari in https://github.com/sivchari/gomu/pull/23
- implement incremental analysis for mutation testing by @sivchari in https://github.com/sivchari/gomu/pull/24
- add goreleaser by @sivchari in https://github.com/sivchari/gomu/pull/25
- Integrate cicd by @sivchari in https://github.com/sivchari/gomu/pull/28
- update ui by @sivchari in https://github.com/sivchari/gomu/pull/29
- introduce validator by @sivchari in https://github.com/sivchari/gomu/pull/30
- enable mutation test by @sivchari in https://github.com/sivchari/gomu/pull/32
- Simplify config by @sivchari in https://github.com/sivchari/gomu/pull/35
- Introduce registry to maintain easily by @sivchari in https://github.com/sivchari/gomu/pull/36
- add test for improve threshold by @sivchari in https://github.com/sivchari/gomu/pull/37
- update docs by @sivchari in https://github.com/sivchari/gomu/pull/38
- implement bitwise by @sivchari in https://github.com/sivchari/gomu/pull/39
- refactor gomu by @sivchari in https://github.com/sivchari/gomu/pull/40
- Refactor by @sivchari in https://github.com/sivchari/gomu/pull/41
- refactor: overlay-based mutation and improved output handling by @sivchari in https://github.com/sivchari/gomu/pull/44
- feat: add goreleaser and tagpr configuration for v0.1.0 release by @sivchari in https://github.com/sivchari/gomu/pull/45
- fix: resolve .gomuignore and Not Viable mutation issues by @sivchari in https://github.com/sivchari/gomu/pull/46
- fix: improve mutation type safety and eliminate Not Viable mutations by @sivchari in https://github.com/sivchari/gomu/pull/47
- chore: add version.go for tagpr release management by @sivchari in https://github.com/sivchari/gomu/pull/49
2 changes: 1 addition & 1 deletion internal/history/store.go
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ func (s *Store) Save() error {
}{
Entries: s.entries,
SavedAt: time.Now(),
Version: "v0.0.0",
Version: "v0.0.1",
}

data, err := json.MarshalIndent(historyData, "", " ")
Expand Down