diff --git a/pkg/stdlib/stdlib-content.jsonnet b/pkg/stdlib/stdlib-content.jsonnet index 369aaa4..56eb282 100644 --- a/pkg/stdlib/stdlib-content.jsonnet +++ b/pkg/stdlib/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: [ { @@ -1286,7 +1286,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. @@ -1299,7 +1299,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.