From ca2d672ffe4c243570671ee0cd62d887f123372e Mon Sep 17 00:00:00 2001 From: Dave Cunningham Date: Wed, 26 Oct 2022 20:18:40 +0100 Subject: [PATCH] Update version to v0.19.0 --- cpp/CMakeLists.txt | 2 +- doc/_stdlib_gen/stdlib-content.jsonnet | 6 +++--- include/libjsonnet.h | 2 +- test_cmd/fmt_help.golden.stdout | 2 +- test_cmd/fmt_help.golden.stdout.golang | 2 +- test_cmd/fmt_no_args.golden.stderr | 2 +- test_cmd/fmt_no_args.golden.stderr.golang | 2 +- test_cmd/fmt_version1.golden.stdout | 2 +- test_cmd/fmt_version2.golden.stdout | 2 +- test_cmd/help.golden.stdout.cpp | 2 +- test_cmd/help.golden.stdout.golang | 2 +- test_cmd/no_args.golden.stderr.cpp | 2 +- test_cmd/no_args.golden.stderr.golang | 2 +- test_cmd/version1.golden.stdout.cpp | 2 +- test_cmd/version1.golden.stdout.golang | 2 +- test_cmd/version2.golden.stdout.cpp | 2 +- test_cmd/version2.golden.stdout.golang | 2 +- 17 files changed, 19 insertions(+), 19 deletions(-) diff --git a/cpp/CMakeLists.txt b/cpp/CMakeLists.txt index eb7686c23..32ac0c8c7 100644 --- a/cpp/CMakeLists.txt +++ b/cpp/CMakeLists.txt @@ -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.18.0" + VERSION "0.19.0" SOVERSION "0" PUBLIC_HEADER "${LIB_HEADER}") install(TARGETS libjsonnet++ diff --git a/doc/_stdlib_gen/stdlib-content.jsonnet b/doc/_stdlib_gen/stdlib-content.jsonnet index 50d63a9eb..47b200a8b 100644 --- a/doc/_stdlib_gen/stdlib-content.jsonnet +++ b/doc/_stdlib_gen/stdlib-content.jsonnet @@ -385,7 +385,7 @@ local html = import 'html.libsonnet'; { name: 'splitLimitR', params: ['str', 'c', 'maxsplits'], - availableSince: 'upcoming', + availableSince: 'v0.19.0', description: 'As std.splitLimit(str, c, maxsplits) but will split from right to left.', examples: [ { @@ -1269,7 +1269,7 @@ local html = import 'html.libsonnet'; { name: 'all', params: ['arr'], - availableSince: 'upcoming', + availableSince: 'v0.19.0', description: html.paragraphs([ ||| Return true if all elements of arr is true, false otherwise. all([]) evaluates to true. @@ -1282,7 +1282,7 @@ local html = import 'html.libsonnet'; { name: 'any', params: ['arr'], - availableSince: 'upcoming', + availableSince: 'v0.19.0', description: html.paragraphs([ ||| Return true if any element of arr is true, false otherwise. any([]) evaluates to false. diff --git a/include/libjsonnet.h b/include/libjsonnet.h index 0f473c447..9ae086bd6 100644 --- a/include/libjsonnet.h +++ b/include/libjsonnet.h @@ -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.18.0" +#define LIB_JSONNET_VERSION "v0.19.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 diff --git a/test_cmd/fmt_help.golden.stdout b/test_cmd/fmt_help.golden.stdout index fc5149941..87f19c2af 100644 --- a/test_cmd/fmt_help.golden.stdout +++ b/test_cmd/fmt_help.golden.stdout @@ -1,4 +1,4 @@ -Jsonnet reformatter v0.18.0 +Jsonnet reformatter v0.19.0 jsonnetfmt {