Skip to content

Commit 5567a6a

Browse files
authored
chore: release v0.3.1 (#411)
Updates: - Fix pkg/tooling/go.mod to reference v0.3.1 for internal modules - Fix tests/bdd/go.mod to reference v0.3.1 for pkg/models - Update cmd/morphir/go.mod to reference v0.3.1 - Update CHANGELOG for v0.3.1 release This release completes the module version fix that was partially done in v0.3.0, ensuring all internal module references use the correct version instead of v0.0.0.
1 parent a3db921 commit 5567a6a

File tree

4 files changed

+17
-7
lines changed

4 files changed

+17
-7
lines changed

CHANGELOG.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.3.1] - 2026-01-05
11+
12+
### Fixed
13+
- Complete module version references for all internal dependencies
14+
- Updated pkg/tooling/go.mod to reference v0.3.0 for pkg/config and pkg/models
15+
- Updated tests/bdd/go.mod to reference v0.3.0 for pkg/models
16+
- Fixed release workflow to handle existing tags with `-f` flag
17+
- Release workflow now supports manual re-triggering for failed releases
18+
1019
## [0.3.0] - 2026-01-04
1120

1221
### Added
@@ -105,6 +114,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
105114
### Fixed
106115
- Duplicate help command registration in CLI
107116

108-
[Unreleased]: https://github.com/finos/morphir/compare/v0.3.0...HEAD
117+
[Unreleased]: https://github.com/finos/morphir/compare/v0.3.1...HEAD
118+
[0.3.1]: https://github.com/finos/morphir/compare/v0.3.0...v0.3.1
109119
[0.3.0]: https://github.com/finos/morphir/compare/v0.2.1...v0.3.0
110120
[0.1.0]: https://github.com/finos/morphir/releases/tag/v0.1.0

cmd/morphir/go.mod

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ require (
77
github.com/charmbracelet/bubbletea v1.3.10
88
github.com/charmbracelet/glamour v0.10.0
99
github.com/charmbracelet/lipgloss v1.1.1-0.20250404203927-76690c660834
10-
github.com/finos/morphir/pkg/config v0.3.0
11-
github.com/finos/morphir/pkg/tooling v0.3.0
10+
github.com/finos/morphir/pkg/config v0.3.1
11+
github.com/finos/morphir/pkg/tooling v0.3.1
1212
github.com/spf13/cobra v1.10.2
1313
)
1414

@@ -25,7 +25,7 @@ require (
2525
github.com/charmbracelet/x/term v0.2.1 // indirect
2626
github.com/dlclark/regexp2 v1.11.0 // indirect
2727
github.com/erikgeiser/coninput v0.0.0-20211004153227-1c3628e74d0f // indirect
28-
github.com/finos/morphir/pkg/models v0.3.0 // indirect
28+
github.com/finos/morphir/pkg/models v0.3.1 // indirect
2929
github.com/gorilla/css v1.0.1 // indirect
3030
github.com/inconshreveable/mousetrap v1.1.0 // indirect
3131
github.com/joho/godotenv v1.5.1 // indirect

pkg/tooling/go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ require (
66
github.com/BurntSushi/toml v1.6.0
77
github.com/bmatcuk/doublestar/v4 v4.9.1
88
github.com/charmbracelet/glamour v0.10.0
9-
github.com/finos/morphir/pkg/config v0.0.0
10-
github.com/finos/morphir/pkg/models v0.0.0
9+
github.com/finos/morphir/pkg/config v0.3.1
10+
github.com/finos/morphir/pkg/models v0.3.1
1111
github.com/mattn/go-isatty v0.0.20
1212
github.com/santhosh-tekuri/jsonschema/v6 v6.0.2
1313
sigs.k8s.io/yaml v1.4.0

tests/bdd/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ go 1.25.5
55
require (
66
github.com/bmatcuk/doublestar/v4 v4.9.1
77
github.com/cucumber/godog v0.15.0
8-
github.com/finos/morphir/pkg/models v0.0.0
8+
github.com/finos/morphir/pkg/models v0.3.1
99
github.com/pelletier/go-toml/v2 v2.2.4
1010
gopkg.in/yaml.v3 v3.0.1
1111
)

0 commit comments

Comments
 (0)