Skip to content

Commit

Permalink
0.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
lihaoyi committed Dec 26, 2019
1 parent fd0c691 commit e07a8e8
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
10 changes: 5 additions & 5 deletions build.sc
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import mill._, scalalib._, publish._, scalajslib.ScalaJSModule
val sjsonnetVersion = "0.2.0"
val sjsonnetVersion = "0.2.1"

object sjsonnet extends Cross[SjsonnetModule]("2.12.8", "2.13.0")
class SjsonnetModule(val crossScalaVersion: String) extends Module {
Expand All @@ -15,9 +15,9 @@ class SjsonnetModule(val crossScalaVersion: String) extends Module {
def crossScalaVersion = SjsonnetModule.this.crossScalaVersion

def ivyDeps = Agg(
ivy"com.lihaoyi::fastparse::2.2.0",
ivy"com.lihaoyi::fastparse::2.2.2",
ivy"com.lihaoyi::pprint::0.5.7",
ivy"com.lihaoyi::ujson::0.9.3",
ivy"com.lihaoyi::ujson::0.9.5",
ivy"com.lihaoyi::scalatags::0.8.3",
ivy"com.github.scopt::scopt::3.7.1",
ivy"org.scala-lang.modules::scala-collection-compat::2.0.0"
Expand Down Expand Up @@ -56,15 +56,15 @@ class SjsonnetModule(val crossScalaVersion: String) extends Module {
}
}
object js extends SjsonnetCrossModule with ScalaJSModule{
def scalaJSVersion = "0.6.28"
def scalaJSVersion = "0.6.31"
def platformSegment = "js"
object test extends Tests with CrossTests
}
object jvm extends SjsonnetCrossModule {
def mainClass = Some("sjsonnet.SjsonnetMain")
def platformSegment = "jvm"
def ivyDeps = super.ivyDeps() ++ Agg(
ivy"com.lihaoyi::os-lib:0.5.0",
ivy"com.lihaoyi::os-lib:0.6.2",
)
def compileIvyDeps = Agg( ivy"com.lihaoyi::acyclic:0.2.0")
def scalacOptions = Seq("-P:acyclic:force")
Expand Down
8 changes: 4 additions & 4 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.lihaoyi</groupId>
<artifactId>sjsonnet_2.13</artifactId>
<version>0.1.8</version>
<version>0.2.1</version>
</dependency>
```
```java
Expand All @@ -29,8 +29,8 @@ sjsonnet.SjsonnetMain.main0(
From Scala:

```scala
"com.lihaoyi" %% "sjsonnet" % "0.2.0" // SBT
ivy"com.lihaoyi::sjsonnet:0.2.0" // Mill
"com.lihaoyi" %% "sjsonnet" % "0.2.1" // SBT
ivy"com.lihaoyi::sjsonnet:0.2.1" // Mill
```

```scala
Expand Down Expand Up @@ -239,7 +239,7 @@ To publish, run the following commands:
## Changelog


### 0.2.0
### 0.2.1

- Bump verion of Scalatags, uPickle

Expand Down

0 comments on commit e07a8e8

Please sign in to comment.