Skip to content

Commit 5b5bcd5

Browse files
release: prepare to release v0.21.0-rc1
This updates embedded version numbers, and also updates the C++ jsonnet dependency to the published v0.21.0-rc1 (source release).
1 parent 7b5c938 commit 5b5bcd5

File tree

6 files changed

+11
-11
lines changed

6 files changed

+11
-11
lines changed

MODULE.bazel

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
module(name = "jsonnet_go", version = "0.0.0")
1+
module(name = "jsonnet_go", version = "0.21.0-rc1")
22

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 = "e7d14d8ad65dc334b9a9f3bd1c542a82b3b80029860a8d78fd829b23d0e9845b"
7-
CPP_JSONNET_GITHASH = "5a4e8e34cc1fe841bdebb983646b9b9ae8fa8ca4"
8-
CPP_JSONNET_RELEASE_VERSION = ""
6+
CPP_JSONNET_SHA256 = "f104659d3feb42c871d40c5142577dff2cd3b2eda33ac9534f5f12b14643748d"
7+
CPP_JSONNET_GITHASH = "2c3b51491a67ab7b24aecfc23fa3f73f68135129"
8+
CPP_JSONNET_RELEASE_VERSION = "v0.21.0-rc1"
99

1010
CPP_JSONNET_STRIP_PREFIX = (
1111
"jsonnet-" + (

bazel/repositories.bzl

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ load(
44
)
55

66
# NB: update_cpp_jsonnet.sh looks for these.
7-
CPP_JSONNET_SHA256 = "e7d14d8ad65dc334b9a9f3bd1c542a82b3b80029860a8d78fd829b23d0e9845b"
8-
CPP_JSONNET_GITHASH = "5a4e8e34cc1fe841bdebb983646b9b9ae8fa8ca4"
9-
CPP_JSONNET_RELEASE_VERSION = ""
7+
CPP_JSONNET_SHA256 = "f104659d3feb42c871d40c5142577dff2cd3b2eda33ac9534f5f12b14643748d"
8+
CPP_JSONNET_GITHASH = "2c3b51491a67ab7b24aecfc23fa3f73f68135129"
9+
CPP_JSONNET_RELEASE_VERSION = "v0.21.0-rc1"
1010

1111
CPP_JSONNET_STRIP_PREFIX = (
1212
"jsonnet-" + (

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Jsonnet reformatter v0.20.0
1+
Jsonnet reformatter v0.21.0-rc1
22

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

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
ERROR: must give filename
22

3-
Jsonnet reformatter v0.20.0
3+
Jsonnet reformatter v0.21.0-rc1
44

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

vm.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ const (
176176
)
177177

178178
// version is the current gojsonnet's version
179-
const version = "v0.20.0"
179+
const version = "v0.21.0-rc1"
180180

181181
// Evaluate evaluates a Jsonnet program given by an Abstract Syntax Tree
182182
// and returns serialized JSON as string.

0 commit comments

Comments
 (0)