Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
val sjsonnetVersion = "0.4.15"
val sjsonnetVersion = "0.4.15.1"

scalaVersion in Global := "2.13.16"

Expand Down
2 changes: 1 addition & 1 deletion build.sc
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import $ivy.`com.lihaoyi::mill-contrib-jmh:`
import contrib.jmh.JmhModule
import java.util.Base64

val sjsonnetVersion = "0.4.15"
val sjsonnetVersion = "0.4.15.1"

val scalaVersions = Seq("2.12.20", "2.13.16")

Expand Down
15 changes: 9 additions & 6 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Sjsonnet can be used from Java:
<dependency>
<groupId>com.databricks</groupId>
<artifactId>sjsonnet_2.13</artifactId>
<version>0.4.15</version>
<version>0.4.15.1</version>
</dependency>
```

Expand All @@ -30,8 +30,8 @@ sjsonnet.SjsonnetMain.main0(
From Scala:

```scala
"com.databricks" %% "sjsonnet" % "0.4.15" // SBT
ivy"com.databricks::sjsonnet:0.4.15" // Mill
"com.databricks" %% "sjsonnet" % "0.4.15.1" // SBT
ivy"com.databricks::sjsonnet:0.4.15.1" // Mill
```

```scala
Expand All @@ -48,10 +48,10 @@ sjsonnet.SjsonnetMain.main0(

As a standalone executable assembly:

- <https://github.com/databricks/sjsonnet/releases/download/0.4.15/sjsonnet.jar>
- <https://github.com/databricks/sjsonnet/releases/download/0.4.15.1/sjsonnet.jar>

```bash
$ curl -L https://github.com/databricks/sjsonnet/releases/download/0.4.15/sjsonnet-0.4.15.jar > sjsonnet.jar
$ curl -L https://github.com/databricks/sjsonnet/releases/download/0.4.15.1/sjsonnet-0.4.15.1.jar > sjsonnet.jar

$ chmod +x sjsonnet.jar

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

```javascript
$ curl -L https://github.com/databricks/sjsonnet/releases/download/0.4.15/sjsonnet-0.4.15.js > sjsonnet.js
$ curl -L https://github.com/databricks/sjsonnet/releases/download/0.4.15.1/sjsonnet-0.4.15.1.js > sjsonnet.js

$ node

Expand Down Expand Up @@ -278,6 +278,9 @@ To publish, make sure the version number in `build.sc` is correct, then run the

## Changelog

### 0.4.15.1
- Various small bug fixes.

### 0.4.15
- Add support for `tailstrict` [#189](https://github.com/databricks/sjsonnet/issues/189).
- Bind the standard library to a `$std` variable and use it in desugared expressions [#249](https://github.com/databricks/sjsonnet/issues/249).
Expand Down