Skip to content

Commit

Permalink
0.2.3
Browse files Browse the repository at this point in the history
  • Loading branch information
lihaoyi committed Jan 12, 2020
1 parent 265477c commit 83cabbe
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
16 changes: 8 additions & 8 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.2"
val sjsonnetVersion = "0.2.3"

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

def ivyDeps = Agg(
ivy"com.lihaoyi::fastparse::2.2.2",
ivy"com.lihaoyi::pprint::0.5.7",
ivy"com.lihaoyi::ujson::0.9.6",
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"
ivy"com.lihaoyi::fastparse::2.2.3",
ivy"com.lihaoyi::pprint::0.5.8",
ivy"com.lihaoyi::ujson::0.9.7",
ivy"com.lihaoyi::scalatags::0.8.4",
ivy"org.scala-lang.modules::scala-collection-compat::2.1.3"
)
def publishVersion = sjsonnetVersion

Expand All @@ -47,7 +46,7 @@ class SjsonnetModule(val crossScalaVersion: String) extends Module {
)
trait CrossTests extends ScalaModule with TestModule {
def platformSegment = SjsonnetCrossModule.this.platformSegment
def ivyDeps = Agg(ivy"com.lihaoyi::utest::0.7.1")
def ivyDeps = Agg(ivy"com.lihaoyi::utest::0.7.3")
def testFrameworks = Seq("utest.runner.Framework")
def sources = T.sources(
millSourcePath / "src",
Expand All @@ -65,6 +64,7 @@ class SjsonnetModule(val crossScalaVersion: String) extends Module {
def platformSegment = "jvm"
def ivyDeps = super.ivyDeps() ++ Agg(
ivy"com.lihaoyi::os-lib:0.6.2",
ivy"com.github.scopt::scopt::3.7.1",
)
def compileIvyDeps = Agg( ivy"com.lihaoyi::acyclic:0.2.0")
def scalacOptions = Seq("-P:acyclic:force")
Expand Down
2 changes: 1 addition & 1 deletion mill
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# This is a wrapper script, that automatically download mill from GitHub release pages
# You can give the required mill version with MILL_VERSION env variable
# If no version is given, it falls back to the value of DEFAULT_MILL_VERSION
DEFAULT_MILL_VERSION=0.5.0
DEFAULT_MILL_VERSION=0.5.7

set -e

Expand Down

0 comments on commit 83cabbe

Please sign in to comment.