Skip to content

Commit 2a3f4af

Browse files
release: prepare to release v0.21.0-rc2
1 parent fe1d35d commit 2a3f4af

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.21.0-rc1")
1+
module(name = "jsonnet_go", version = "0.21.0-rc2")
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 = "f104659d3feb42c871d40c5142577dff2cd3b2eda33ac9534f5f12b14643748d"
7-
CPP_JSONNET_GITHASH = "2c3b51491a67ab7b24aecfc23fa3f73f68135129"
8-
CPP_JSONNET_RELEASE_VERSION = "v0.21.0-rc1"
6+
CPP_JSONNET_SHA256 = "c19ca480c1d9d74d18e3e3c872bf1761eba09c9b7e4029bf3862046e73d191f6"
7+
CPP_JSONNET_GITHASH = "5ad56d2c07610f502f5ca4eef1a478adbfd7e13b"
8+
CPP_JSONNET_RELEASE_VERSION = "v0.21.0-rc2"
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 = "f104659d3feb42c871d40c5142577dff2cd3b2eda33ac9534f5f12b14643748d"
8-
CPP_JSONNET_GITHASH = "2c3b51491a67ab7b24aecfc23fa3f73f68135129"
9-
CPP_JSONNET_RELEASE_VERSION = "v0.21.0-rc1"
7+
CPP_JSONNET_SHA256 = "c19ca480c1d9d74d18e3e3c872bf1761eba09c9b7e4029bf3862046e73d191f6"
8+
CPP_JSONNET_GITHASH = "5ad56d2c07610f502f5ca4eef1a478adbfd7e13b"
9+
CPP_JSONNET_RELEASE_VERSION = "v0.21.0-rc2"
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.21.0-rc1
1+
Jsonnet reformatter v0.21.0-rc2
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.21.0-rc1
3+
Jsonnet reformatter v0.21.0-rc2
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.21.0-rc1"
179+
const version = "v0.21.0-rc2"
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)