diff --git a/build.sbt b/build.sbt
index c7202bf2..30b1e4d1 100644
--- a/build.sbt
+++ b/build.sbt
@@ -1,4 +1,4 @@
-val sjsonnetVersion = "0.4.15"
+val sjsonnetVersion = "0.4.15.1"
scalaVersion in Global := "2.13.16"
diff --git a/build.sc b/build.sc
index 0a0ec469..6fb1ff8d 100644
--- a/build.sc
+++ b/build.sc
@@ -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")
diff --git a/readme.md b/readme.md
index a55378e3..cd9c9967 100644
--- a/readme.md
+++ b/readme.md
@@ -11,7 +11,7 @@ Sjsonnet can be used from Java:
com.databricks
sjsonnet_2.13
- 0.4.15
+ 0.4.15.1
```
@@ -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
@@ -48,10 +48,10 @@ sjsonnet.SjsonnetMain.main0(
As a standalone executable assembly:
--
+-
```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
@@ -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
@@ -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).