Skip to content

Commit

Permalink
Merge pull request #118 from szeiger/release-0.4.0
Browse files Browse the repository at this point in the history
Bump version to 0.4.0
  • Loading branch information
szeiger authored Apr 8, 2021
2 parents 781a5b6 + 602926b commit 59a8e7d
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 8 deletions.
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.3.3"
val sjsonnetVersion = "0.4.0"

scalaVersion in Global := "2.13.4"

Expand Down
2 changes: 1 addition & 1 deletion build.sc
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import mill._, scalalib._, publish._, scalajslib._, scalanativelib._, scalanativelib.api._
val sjsonnetVersion = "0.3.3"
val sjsonnetVersion = "0.4.0"

object sjsonnet extends Cross[SjsonnetModule]("2.12.13", "2.13.4")
class SjsonnetModule(val crossScalaVersion: String) extends Module {
Expand Down
16 changes: 10 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.3.3</version>
<version>0.4.0</version>
</dependency>
```

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

```scala
"com.databricks" %% "sjsonnet" % "0.3.3" // SBT
ivy"com.databricks::sjsonnet:0.3.3" // Mill
"com.databricks" %% "sjsonnet" % "0.4.0" // SBT
ivy"com.databricks::sjsonnet:0.4.0" // Mill
```

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

As a standalone executable assembly:

- <https://github.com/lihaoyi/sjsonnet/releases/download/0.3.3/sjsonnet.jar>
- <https://github.com/lihaoyi/sjsonnet/releases/download/0.4.0/sjsonnet.jar>

```bash
$ curl -L https://github.com/lihaoyi/sjsonnet/releases/download/0.3.3/sjsonnet.jar > sjsonnet.jar
$ curl -L https://github.com/lihaoyi/sjsonnet/releases/download/0.4.0/sjsonnet.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.3.3/sjsonnet.js > sjsonnet.js
$ curl -L https://github.com/databricks/sjsonnet/releases/download/0.4.0/sjsonnet.js > sjsonnet.js

$ node

Expand Down Expand Up @@ -240,6 +240,10 @@ To publish, run the following commands:

## Changelog

### 0.4.0

- Performance improvements with lots of internal changes [#117](https://github.com/databricks/sjsonnet/pull/117)

### 0.3.3

- Bump uJson version to 1.3.7
Expand Down

0 comments on commit 59a8e7d

Please sign in to comment.