Skip to content

Commit 2c3b514

Browse files
release: prepare to release v0.21.0-rc1
This should be followed shortly by v0.21.0, ideally with no further changes. But since this is the first release for nearly 2 years it seems prudent to be a little cautious and publish an actual release candidate first.
1 parent 061e7ab commit 2c3b514

19 files changed

+32
-3781
lines changed

Diff for: MODULE.bazel

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module(
22
name = "jsonnet",
3-
version = "0.0.0",
3+
version = "0.21.0-rc1",
44
)
55

66
bazel_dep(name = "googletest", version = "1.11.0", repo_name = "com_google_googletest")

Diff for: cpp/CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ target_link_libraries(libjsonnet++ libjsonnet)
1515
# CMake prepends CMAKE_SHARED_LIBRARY_PREFIX to shared libraries, so without
1616
# this step the output would be |liblibjsonnet|.
1717
set_target_properties(libjsonnet++ PROPERTIES OUTPUT_NAME jsonnet++
18-
VERSION "0.20.0"
18+
VERSION "0.21.0-rc1"
1919
SOVERSION "0"
2020
PUBLIC_HEADER "${LIB_HEADER}")
2121
install(TARGETS libjsonnet++

Diff for: doc/_stdlib_gen/stdlib-content.jsonnet

+13-13
Original file line numberDiff line numberDiff line change
@@ -400,15 +400,15 @@ local exampleDocMultiline(mid, ex) =
400400
{
401401
name: 'trim',
402402
params: ['str'],
403-
availableSince: 'upcoming',
403+
availableSince: '0.21.0',
404404
description: |||
405405
Returns a copy of string after eliminating leading and trailing whitespaces.
406406
|||,
407407
},
408408
{
409409
name: 'equalsIgnoreCase',
410410
params: ['str1', 'str2'],
411-
availableSince: 'upcoming',
411+
availableSince: '0.21.0',
412412
description: |||
413413
Returns true if the the given <code>str1</code> is equal to <code>str2</code> by doing case insensitive comparison, false otherwise.
414414
|||,
@@ -1347,7 +1347,7 @@ local exampleDocMultiline(mid, ex) =
13471347
{
13481348
name: 'flattenDeepArray',
13491349
params: ['value'],
1350-
availableSince: 'upcoming',
1350+
availableSince: '0.21.0',
13511351
description: |||
13521352
Concatenate an array containing values and arrays into a single flattened array.
13531353
|||,
@@ -1433,7 +1433,7 @@ local exampleDocMultiline(mid, ex) =
14331433
{
14341434
name: 'minArray',
14351435
params: ['arr', 'keyF', 'onEmpty'],
1436-
availableSince: 'upcoming',
1436+
availableSince: '0.21.0',
14371437
description: html.paragraphs([
14381438
|||
14391439
Return the min of all element in <code>arr</code>.
@@ -1443,7 +1443,7 @@ local exampleDocMultiline(mid, ex) =
14431443
{
14441444
name: 'maxArray',
14451445
params: ['arr', 'keyF', 'onEmpty'],
1446-
availableSince: 'upcoming',
1446+
availableSince: '0.21.0',
14471447
description: html.paragraphs([
14481448
|||
14491449
Return the max of all element in <code>arr</code>.
@@ -1453,7 +1453,7 @@ local exampleDocMultiline(mid, ex) =
14531453
{
14541454
name: 'contains',
14551455
params: ['arr', 'elem'],
1456-
availableSince: 'upcoming',
1456+
availableSince: '0.21.0',
14571457
description: html.paragraphs([
14581458
|||
14591459
Return true if given <code>elem</code> is present in <code>arr</code>, false otherwise.
@@ -1473,7 +1473,7 @@ local exampleDocMultiline(mid, ex) =
14731473
{
14741474
name: 'remove',
14751475
params: ['arr', 'elem'],
1476-
availableSince: 'upcoming',
1476+
availableSince: '0.21.0',
14771477
description: html.paragraphs([
14781478
|||
14791479
Remove first occurrence of <code>elem</code> from <code>arr</code>.
@@ -1483,7 +1483,7 @@ local exampleDocMultiline(mid, ex) =
14831483
{
14841484
name: 'removeAt',
14851485
params: ['arr', 'idx'],
1486-
availableSince: 'upcoming',
1486+
availableSince: '0.21.0',
14871487
description: html.paragraphs([
14881488
|||
14891489
Remove element at <code>idx</code> index from <code>arr</code>.
@@ -1650,7 +1650,7 @@ local exampleDocMultiline(mid, ex) =
16501650
{
16511651
name: 'objectRemoveKey',
16521652
params: ['obj', 'key'],
1653-
availableSince: 'upcoming',
1653+
availableSince: '0.21.0',
16541654
description: |||
16551655
Returns a new object after removing the given key from object.
16561656
|||,
@@ -1717,7 +1717,7 @@ local exampleDocMultiline(mid, ex) =
17171717
{
17181718
name: 'sha1',
17191719
params: ['s'],
1720-
availableSince: 'upcoming',
1720+
availableSince: '0.21.0',
17211721
description: [
17221722
html.p({}, |||
17231723
Encodes the given value into an SHA1 string.
@@ -1730,7 +1730,7 @@ local exampleDocMultiline(mid, ex) =
17301730
{
17311731
name: 'sha256',
17321732
params: ['s'],
1733-
availableSince: 'upcoming',
1733+
availableSince: '0.21.0',
17341734
description: [
17351735
html.p({}, |||
17361736
Encodes the given value into an SHA256 string.
@@ -1743,7 +1743,7 @@ local exampleDocMultiline(mid, ex) =
17431743
{
17441744
name: 'sha512',
17451745
params: ['s'],
1746-
availableSince: 'upcoming',
1746+
availableSince: '0.21.0',
17471747
description: [
17481748
html.p({}, |||
17491749
Encodes the given value into an SHA512 string.
@@ -1756,7 +1756,7 @@ local exampleDocMultiline(mid, ex) =
17561756
{
17571757
name: 'sha3',
17581758
params: ['s'],
1759-
availableSince: 'upcoming',
1759+
availableSince: '0.21.0',
17601760
description: [
17611761
html.p({}, |||
17621762
Encodes the given value into an SHA3 string.

0 commit comments

Comments
 (0)