Skip to content

Commit 567b61a

Browse files
release: v0.22.0
1 parent 456331f commit 567b61a

File tree

10 files changed

+12
-12
lines changed

10 files changed

+12
-12
lines changed

MODULE.bazel

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@ module(name = "jsonnet_go")
33
http_archive = use_repo_rule("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
44

55
# NB: update_cpp_jsonnet.sh looks for these.
6-
CPP_JSONNET_SHA256 = "0bbba601b86357eb75ea88145d69e95f1fe3738573b7bec782c52b0672b97ec0"
6+
CPP_JSONNET_SHA256 = "fd581628cbdd454e5ee927d96c51ea5040f2e4afc06598542c62d40bcb361e6a"
77

8-
CPP_JSONNET_GITHASH = "1b19a3578c268d3967a5f5b16925970c72fbc528"
8+
CPP_JSONNET_GITHASH = "5aec27e03a61dae06461becb95089b15fe217233"
99

10-
CPP_JSONNET_RELEASE_VERSION = "v0.22.0-rc1"
10+
CPP_JSONNET_RELEASE_VERSION = "v0.22.0"
1111

1212
CPP_JSONNET_STRIP_PREFIX = (
1313
"jsonnet-" + (

examples/bazel/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ module example/go-jsonnet-using-bazel
22

33
go 1.24.5
44

5-
require github.com/google/go-jsonnet v0.22.0-rc1
5+
require github.com/google/go-jsonnet v0.22.0
66

77
require (
88
golang.org/x/crypto v0.45.0 // indirect

testdata/cpp-tests-override/fmt_help.golden.stdout

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Jsonnet reformatter v0.22.0-rc1
1+
Jsonnet reformatter v0.22.0
22

33
jsonnetfmt {<option>} { <filename> }
44

testdata/cpp-tests-override/fmt_no_args.golden.stderr

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
ERROR: must give filename
22

3-
Jsonnet reformatter v0.22.0-rc1
3+
Jsonnet reformatter v0.22.0
44

55
jsonnetfmt {<option>} { <filename> }
66

testdata/cpp-tests-override/help.golden.stdout

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Jsonnet commandline interpreter (Go implementation) v0.22.0-rc1
1+
Jsonnet commandline interpreter (Go implementation) v0.22.0
22

33
jsonnet {<option>} <filename>
44

testdata/cpp-tests-override/no_args.golden.stderr

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
ERROR: must give filename
22

3-
Jsonnet commandline interpreter (Go implementation) v0.22.0-rc1
3+
Jsonnet commandline interpreter (Go implementation) v0.22.0
44

55
jsonnet {<option>} <filename>
66

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
Jsonnet commandline interpreter (Go implementation) v0.22.0-rc1
1+
Jsonnet commandline interpreter (Go implementation) v0.22.0
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
Jsonnet commandline interpreter (Go implementation) v0.22.0-rc1
1+
Jsonnet commandline interpreter (Go implementation) v0.22.0

vm.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ const (
178178
)
179179

180180
// version is the current gojsonnet's version
181-
const version = "v0.22.0-rc1"
181+
const version = "v0.22.0"
182182

183183
func (vm *VM) buildConfiguredInterpreter() (*interpreter, error) {
184184
return buildInterpreter(vm.ext, vm.nativeFuncs, vm.MaxStack, vm.importCache, vm.traceOut, vm.EvalHook)

0 commit comments

Comments
 (0)