Skip to content

Commit

Permalink
bump version to v0.20.0
Browse files Browse the repository at this point in the history
  • Loading branch information
sparkprime committed Apr 17, 2023
1 parent 47c2993 commit f45e01d
Show file tree
Hide file tree
Showing 17 changed files with 22 additions and 22 deletions.
2 changes: 1 addition & 1 deletion cpp/CMakeLists.txt
Expand Up @@ -15,7 +15,7 @@ add_dependencies(libjsonnet++ jsonnet)
# CMake prepends CMAKE_SHARED_LIBRARY_PREFIX to shared libraries, so without
# this step the output would be |liblibjsonnet|.
set_target_properties(libjsonnet++ PROPERTIES OUTPUT_NAME jsonnet++
VERSION "0.19.1"
VERSION "0.20.0"
SOVERSION "0"
PUBLIC_HEADER "${LIB_HEADER}")
install(TARGETS libjsonnet++
Expand Down
12 changes: 6 additions & 6 deletions doc/_stdlib_gen/stdlib-content.jsonnet
Expand Up @@ -109,7 +109,7 @@ local html = import 'html.libsonnet';
{
name: 'objectKeysValues',
params: ['o'],
availableSince: 'upcoming',
availableSince: '0.20.0',
description: |||
Returns an array of objects from the given object, each object having two fields:
<code>key</code> (string) and <code>value</code> (object). Does not include hidden fields.
Expand Down Expand Up @@ -142,7 +142,7 @@ local html = import 'html.libsonnet';
{
name: 'objectKeysValuesAll',
params: ['o'],
availableSince: 'upcoming',
availableSince: '0.20.0',
description: |||
As <code>std.objectKeysValues</code> but also includes hidden fields.
|||,
Expand Down Expand Up @@ -453,7 +453,7 @@ local html = import 'html.libsonnet';
{
name: 'isEmpty',
params: ['str'],
availableSince: 'upcoming',
availableSince: '0.20.0',
description: |||
Returns true if the the given string is of zero length.
|||,
Expand Down Expand Up @@ -1414,7 +1414,7 @@ local html = import 'html.libsonnet';
{
name: 'sum',
params: ['arr'],
availableSince: 'upcoming',
availableSince: '0.20.0',
description: html.paragraphs([
|||
Return sum of all element in <code>arr</code>.
Expand Down Expand Up @@ -1553,15 +1553,15 @@ local html = import 'html.libsonnet';
{
name: 'xor',
params: ['x', 'y'],
availableSince: 'upcoming',
availableSince: '0.20.0',
description: |||
Returns the xor of the two given booleans.
|||,
},
{
name: 'xnor',
params: ['x', 'y'],
availableSince: 'upcoming',
availableSince: '0.20.0',
description: |||
Returns the xnor of the two given booleans.
|||,
Expand Down
2 changes: 1 addition & 1 deletion include/libjsonnet.h
Expand Up @@ -31,7 +31,7 @@ limitations under the License.
*
* If this isn't the sae as jsonnet_version() then you've got a mismatched binary / header.
*/
#define LIB_JSONNET_VERSION "v0.19.1"
#define LIB_JSONNET_VERSION "v0.20.0"

/** Return the version string of the Jsonnet interpreter. Conforms to semantic versioning
* https://semver.org/ If this does not match LIB_JSONNET_VERSION then there is a mismatch between
Expand Down
2 changes: 1 addition & 1 deletion test_cmd/fmt_help.golden.stdout
@@ -1,4 +1,4 @@
Jsonnet reformatter v0.19.1
Jsonnet reformatter v0.20.0

jsonnetfmt {<option>} { <filename> }

Expand Down
2 changes: 1 addition & 1 deletion test_cmd/fmt_help.golden.stdout.golang
@@ -1,4 +1,4 @@
Jsonnet reformatter v0.19.1
Jsonnet reformatter v0.20.0

jsonnetfmt {<option>} { <filename> }

Expand Down
2 changes: 1 addition & 1 deletion test_cmd/fmt_no_args.golden.stderr
@@ -1,6 +1,6 @@
ERROR: must give filename

Jsonnet reformatter v0.19.1
Jsonnet reformatter v0.20.0

jsonnetfmt {<option>} { <filename> }

Expand Down
2 changes: 1 addition & 1 deletion test_cmd/fmt_no_args.golden.stderr.golang
@@ -1,6 +1,6 @@
ERROR: must give filename

Jsonnet reformatter v0.19.1
Jsonnet reformatter v0.20.0

jsonnetfmt {<option>} { <filename> }

Expand Down
2 changes: 1 addition & 1 deletion test_cmd/fmt_version1.golden.stdout
@@ -1 +1 @@
Jsonnet reformatter v0.19.1
Jsonnet reformatter v0.20.0
2 changes: 1 addition & 1 deletion test_cmd/fmt_version2.golden.stdout
@@ -1 +1 @@
Jsonnet reformatter v0.19.1
Jsonnet reformatter v0.20.0
2 changes: 1 addition & 1 deletion test_cmd/help.golden.stdout.cpp
@@ -1,4 +1,4 @@
Jsonnet commandline interpreter v0.19.1
Jsonnet commandline interpreter v0.20.0

jsonnet {<option>} <filename>

Expand Down
2 changes: 1 addition & 1 deletion test_cmd/help.golden.stdout.golang
@@ -1,4 +1,4 @@
Jsonnet commandline interpreter (Go implementation) v0.19.1
Jsonnet commandline interpreter (Go implementation) v0.20.0

jsonnet {<option>} <filename>

Expand Down
2 changes: 1 addition & 1 deletion test_cmd/no_args.golden.stderr.cpp
@@ -1,6 +1,6 @@
ERROR: must give filename

Jsonnet commandline interpreter v0.19.1
Jsonnet commandline interpreter v0.20.0

jsonnet {<option>} <filename>

Expand Down
2 changes: 1 addition & 1 deletion test_cmd/no_args.golden.stderr.golang
@@ -1,6 +1,6 @@
ERROR: must give filename

Jsonnet commandline interpreter (Go implementation) v0.19.1
Jsonnet commandline interpreter (Go implementation) v0.20.0

jsonnet {<option>} <filename>

Expand Down
2 changes: 1 addition & 1 deletion test_cmd/version1.golden.stdout.cpp
@@ -1 +1 @@
Jsonnet commandline interpreter v0.19.1
Jsonnet commandline interpreter v0.20.0
2 changes: 1 addition & 1 deletion test_cmd/version1.golden.stdout.golang
@@ -1 +1 @@
Jsonnet commandline interpreter (Go implementation) v0.19.1
Jsonnet commandline interpreter (Go implementation) v0.20.0
2 changes: 1 addition & 1 deletion test_cmd/version2.golden.stdout.cpp
@@ -1 +1 @@
Jsonnet commandline interpreter v0.19.1
Jsonnet commandline interpreter v0.20.0
2 changes: 1 addition & 1 deletion test_cmd/version2.golden.stdout.golang
@@ -1 +1 @@
Jsonnet commandline interpreter (Go implementation) v0.19.1
Jsonnet commandline interpreter (Go implementation) v0.20.0

0 comments on commit f45e01d

Please sign in to comment.