Skip to content

Commit 7160a49

Browse files
update readme (#239)
1 parent 123e17f commit 7160a49

1 file changed

Lines changed: 15 additions & 6 deletions

File tree

readme.md

Lines changed: 15 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Sjsonnet can be used from Java:
1111
<dependency>
1212
<groupId>com.databricks</groupId>
1313
<artifactId>sjsonnet_2.13</artifactId>
14-
<version>0.4.12.1</version>
14+
<version>0.4.13</version>
1515
</dependency>
1616
```
1717

@@ -30,8 +30,8 @@ sjsonnet.SjsonnetMain.main0(
3030
From Scala:
3131

3232
```scala
33-
"com.databricks" %% "sjsonnet" % "0.4.12.1" // SBT
34-
ivy"com.databricks::sjsonnet:0.4.12.1" // Mill
33+
"com.databricks" %% "sjsonnet" % "0.4.13" // SBT
34+
ivy"com.databricks::sjsonnet:0.4.13" // Mill
3535
```
3636

3737
```scala
@@ -48,10 +48,10 @@ sjsonnet.SjsonnetMain.main0(
4848

4949
As a standalone executable assembly:
5050

51-
- <https://github.com/databricks/sjsonnet/releases/download/0.4.12.1/sjsonnet.jar>
51+
- <https://github.com/databricks/sjsonnet/releases/download/0.4.13/sjsonnet.jar>
5252

5353
```bash
54-
$ curl -L https://github.com/databricks/sjsonnet/releases/download/0.4.12.1/sjsonnet-0.4.12.1.jar > sjsonnet.jar
54+
$ curl -L https://github.com/databricks/sjsonnet/releases/download/0.4.13/sjsonnet-0.4.13.jar > sjsonnet.jar
5555

5656
$ chmod +x sjsonnet.jar
5757

@@ -71,7 +71,7 @@ $ ./sjsonnet.jar foo.jsonnet
7171
Or from Javascript:
7272

7373
```javascript
74-
$ curl -L https://github.com/databricks/sjsonnet/releases/download/0.4.12/sjsonnet-0.4.12.1.js > sjsonnet.js
74+
$ curl -L https://github.com/databricks/sjsonnet/releases/download/0.4.13/sjsonnet-0.4.13.js > sjsonnet.js
7575

7676
$ node
7777

@@ -280,6 +280,15 @@ to ensure the output bytecode remains compatible with users on older JVMs.
280280

281281
## Changelog
282282

283+
### 0.4.13
284+
- Implemented every missing methods in `std`.
285+
- Improved readability of stack traces when `std` methods are involved.
286+
- Cleaned up default Main class to allow for repeated flags.
287+
- Updated mill to 0.11.9 and added JDK17 build.
288+
- Fixed sjsonnet handling of 64bits integers [#191](https://github.com/databricks/sjsonnet/issues/191)
289+
- Stopped manifesting functions with no arguments in objects by default [#168](https://github.com/databricks/sjsonnet/issues/168)
290+
- Fixed "Duplicate Local Variables in Object Scope" [#178](https://github.com/databricks/sjsonnet/issues/178)
291+
283292
### 0.4.12.1
284293
- 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).
285294

0 commit comments

Comments
 (0)