Skip to content

Commit

Permalink
Merge pull request #407 from stefanprodan/cue-lang-version
Browse files Browse the repository at this point in the history
Add language version to all modules
  • Loading branch information
stefanprodan authored Jun 28, 2024
2 parents 0a8976a + 9a5cb75 commit 1abbda9
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 4 deletions.
1 change: 1 addition & 0 deletions blueprints/starter/cue.mod/module.cue
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
module: "timoni.sh/blueprint"
language: version: "v0.9.0"
2 changes: 1 addition & 1 deletion cmd/timoni/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ import (

var (
VERSION = "0.0.0-dev.0"
CUE_VERSION = "0.8.1"
CUE_VERSION = "0.9.2"
)

var rootCmd = &cobra.Command{
Expand Down
1 change: 1 addition & 0 deletions cmd/timoni/testdata/module/cue.mod/module.cue
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
module: "timoni.sh/test"
language: version: "v0.9.0"
1 change: 1 addition & 0 deletions examples/minimal/cue.mod/module.cue
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
module: "timoni.sh/minimal"
language: version: "v0.9.0"
1 change: 1 addition & 0 deletions examples/redis/cue.mod/module.cue
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
module: "timoni.sh/redis"
language: version: "v0.9.0"
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ module github.com/stefanprodan/timoni
go 1.22

require (
cuelang.org/go v0.9.1
cuelang.org/go v0.9.2
github.com/Masterminds/semver/v3 v3.2.1
github.com/briandowns/spinner v1.23.0
github.com/distribution/distribution/v3 v3.0.0-alpha.1
Expand Down
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
cloud.google.com/go v0.26.0/go.mod h1:aQUYkXzVsufM+DwF1aE+0xfcU+56JwCaLick0ClmMTw=
cuelabs.dev/go/oci/ociregistry v0.0.0-20240404174027-a39bec0462d2 h1:BnG6pr9TTr6CYlrJznYUDj6V7xldD1W+1iXPum0wT/w=
cuelabs.dev/go/oci/ociregistry v0.0.0-20240404174027-a39bec0462d2/go.mod h1:pK23AUVXuNzzTpfMCA06sxZGeVQ/75FdVtW249de9Uo=
cuelang.org/go v0.9.1 h1:SkNkBFMcGpDjjYbbEthAogVP86VA48vRt/KvZ2Xb5OU=
cuelang.org/go v0.9.1/go.mod h1:qpAYsLOf7gTM1YdEg6cxh553uZ4q9ZDWlPbtZr9q1Wk=
cuelang.org/go v0.9.2 h1:pfNiry2PdRBr02G/aKm5k2vhzmqbAOoaB4WurmEbWvs=
cuelang.org/go v0.9.2/go.mod h1:qpAYsLOf7gTM1YdEg6cxh553uZ4q9ZDWlPbtZr9q1Wk=
github.com/Azure/go-ansiterm v0.0.0-20210617225240-d185dfc1b5a1 h1:UQHMgLO+TxOElx5B5HZ4hJQsoJ/PvUvKRhJHDQXO8P8=
github.com/Azure/go-ansiterm v0.0.0-20210617225240-d185dfc1b5a1/go.mod h1:xomTg63KZ2rFqZQzSB4Vz2SUXa1BpHTVz9L5PTmPC4E=
github.com/BurntSushi/toml v0.3.1/go.mod h1:xHWCNGjB5oqiDr8zfno3MHue2Ht5sIBksp03qcyfWMU=
Expand Down
1 change: 1 addition & 0 deletions internal/engine/testdata/module/cue.mod/module.cue
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
module: "timoni.sh/test"
language: version: "v0.9.0"

0 comments on commit 1abbda9

Please sign in to comment.