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
1 change: 1 addition & 0 deletions VERSION
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
0.1.0
15 changes: 15 additions & 0 deletions version.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
// Package contracts provides cross-repo type contracts for hawk-eco.
//
// The Version variable is sourced from the VERSION file at the repo root.
package contracts

import (
_ "embed"
"strings"
)

//go:embed VERSION
var versionFile string

// Version of the hawk-core-contracts library. Single source of truth: VERSION file.
var Version = strings.TrimSpace(versionFile)
Loading