From 7160a49dde85f37ffdb2d22441a193f7ba02d5c5 Mon Sep 17 00:00:00 2001 From: Stephen Amar Date: Fri, 13 Dec 2024 21:37:05 -0800 Subject: [PATCH] update readme (#239) --- readme.md | 21 +++++++++++++++------ 1 file changed, 15 insertions(+), 6 deletions(-) diff --git a/readme.md b/readme.md index ed374157..2fca0201 100644 --- a/readme.md +++ b/readme.md @@ -11,7 +11,7 @@ Sjsonnet can be used from Java: com.databricks sjsonnet_2.13 - 0.4.12.1 + 0.4.13 ``` @@ -30,8 +30,8 @@ sjsonnet.SjsonnetMain.main0( From Scala: ```scala -"com.databricks" %% "sjsonnet" % "0.4.12.1" // SBT -ivy"com.databricks::sjsonnet:0.4.12.1" // Mill +"com.databricks" %% "sjsonnet" % "0.4.13" // SBT +ivy"com.databricks::sjsonnet:0.4.13" // Mill ``` ```scala @@ -48,10 +48,10 @@ sjsonnet.SjsonnetMain.main0( As a standalone executable assembly: -- +- ```bash -$ curl -L https://github.com/databricks/sjsonnet/releases/download/0.4.12.1/sjsonnet-0.4.12.1.jar > sjsonnet.jar +$ curl -L https://github.com/databricks/sjsonnet/releases/download/0.4.13/sjsonnet-0.4.13.jar > sjsonnet.jar $ chmod +x sjsonnet.jar @@ -71,7 +71,7 @@ $ ./sjsonnet.jar foo.jsonnet Or from Javascript: ```javascript -$ curl -L https://github.com/databricks/sjsonnet/releases/download/0.4.12/sjsonnet-0.4.12.1.js > sjsonnet.js +$ curl -L https://github.com/databricks/sjsonnet/releases/download/0.4.13/sjsonnet-0.4.13.js > sjsonnet.js $ node @@ -280,6 +280,15 @@ to ensure the output bytecode remains compatible with users on older JVMs. ## Changelog +### 0.4.13 +- Implemented every missing methods in `std`. +- Improved readability of stack traces when `std` methods are involved. +- Cleaned up default Main class to allow for repeated flags. +- Updated mill to 0.11.9 and added JDK17 build. +- Fixed sjsonnet handling of 64bits integers [#191](https://github.com/databricks/sjsonnet/issues/191) +- Stopped manifesting functions with no arguments in objects by default [#168](https://github.com/databricks/sjsonnet/issues/168) +- Fixed "Duplicate Local Variables in Object Scope" [#178](https://github.com/databricks/sjsonnet/issues/178) + ### 0.4.12.1 - Fix a bug leading to the truncation of the data returned by `std.gzip` and `std.xz` [#221](https://github.com/databricks/sjsonnet/pull/221).