Release v0.16.0

This commit is contained in:
Stanisław Barzowski 2020-05-22 19:03:12 +02:00
parent 2824579c7d
commit d1c1457520
3 changed files with 9 additions and 3 deletions

View File

@ -1,3 +1,9 @@
include vm.go
include *.go
graft internal
graft ast
graft toolutils
graft astgen
include cpp-jsonnet/include/libjsonnet.h
include go.mod
include go.sum
graft c-bindings

@ -1 +1 @@
Subproject commit 2a161cc0b49f26ecc20922981efdb4a8973f48d9
Subproject commit 3f58aa551c917d6a7a2c6d042ee27f93d895ac0b

2
vm.go
View File

@ -125,7 +125,7 @@ const (
)
// version is the current gojsonnet's version
const version = "v0.15.0"
const version = "v0.16.0"
// Evaluate evaluates a Jsonnet program given by an Abstract Syntax Tree
// and returns serialized JSON as string.