Skip to content

Commit 1f0beea

Browse files
release: prepare to release v0.21.0-rc1
This updates embedded version numbers, and also updates the C++ jsonnet dependency to the (not-yet-published) v0.21.0-rc1 commit.
1 parent c792d6e commit 1f0beea

File tree

6 files changed

+9
-9
lines changed

6 files changed

+9
-9
lines changed

MODULE.bazel

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
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"
6+
CPP_JSONNET_SHA256 = "bdd6cd50116485fa9a35666ffab1c6d2c7adc0debf24dcc03ed4181eac56568e"
7+
CPP_JSONNET_GITHASH = "2c3b51491a67ab7b24aecfc23fa3f73f68135129"
88

99
# We don't use a normal bazel_dep reference for the cpp_jsonnet module,
1010
# because we want to pin to the specific jsonnet commit (which might not

bazel/repositories.bzl

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ load(
44
)
55

66
# NB: update_cpp_jsonnet.sh looks for these.
7-
CPP_JSONNET_SHA256 = "e7d14d8ad65dc334b9a9f3bd1c542a82b3b80029860a8d78fd829b23d0e9845b"
8-
CPP_JSONNET_GITHASH = "5a4e8e34cc1fe841bdebb983646b9b9ae8fa8ca4"
7+
CPP_JSONNET_SHA256 = "bdd6cd50116485fa9a35666ffab1c6d2c7adc0debf24dcc03ed4181eac56568e"
8+
CPP_JSONNET_GITHASH = "2c3b51491a67ab7b24aecfc23fa3f73f68135129"
99

1010
def jsonnet_go_repositories():
1111
http_archive(

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)