From 89b6d13cac5a7f06e354cfdd62b36ecf50381806 Mon Sep 17 00:00:00 2001 From: Li Haoyi Date: Sun, 15 Mar 2020 10:57:39 +0800 Subject: [PATCH] bump dependency versions, 0.2.4 --- build.sc | 18 +++++++++--------- mill | 2 +- readme.md | 5 +++++ 3 files changed, 15 insertions(+), 10 deletions(-) diff --git a/build.sc b/build.sc index cc41400a..3a6e894e 100644 --- a/build.sc +++ b/build.sc @@ -1,5 +1,5 @@ import mill._, scalalib._, publish._, scalajslib.ScalaJSModule -val sjsonnetVersion = "0.2.3" +val sjsonnetVersion = "0.2.4" object sjsonnet extends Cross[SjsonnetModule]("2.12.8", "2.13.0") class SjsonnetModule(val crossScalaVersion: String) extends Module { @@ -15,11 +15,11 @@ class SjsonnetModule(val crossScalaVersion: String) extends Module { def crossScalaVersion = SjsonnetModule.this.crossScalaVersion def ivyDeps = Agg( - 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" + ivy"com.lihaoyi::fastparse::2.2.4", + ivy"com.lihaoyi::pprint::0.5.9", + ivy"com.lihaoyi::ujson::1.0.0", + ivy"com.lihaoyi::scalatags::0.8.6", + ivy"org.scala-lang.modules::scala-collection-compat::2.1.4" ) def publishVersion = sjsonnetVersion @@ -46,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.3") + def ivyDeps = Agg(ivy"com.lihaoyi::utest::0.7.4") def testFrameworks = Seq("utest.runner.Framework") def sources = T.sources( millSourcePath / "src", @@ -55,7 +55,7 @@ class SjsonnetModule(val crossScalaVersion: String) extends Module { } } object js extends SjsonnetCrossModule with ScalaJSModule{ - def scalaJSVersion = "0.6.31" + def scalaJSVersion = "1.0.0" def platformSegment = "js" object test extends Tests with CrossTests } @@ -63,7 +63,7 @@ class SjsonnetModule(val crossScalaVersion: String) extends Module { def mainClass = Some("sjsonnet.SjsonnetMain") def platformSegment = "jvm" def ivyDeps = super.ivyDeps() ++ Agg( - ivy"com.lihaoyi::os-lib:0.6.2", + ivy"com.lihaoyi::os-lib:0.6.3", ivy"com.github.scopt::scopt::3.7.1", ) def compileIvyDeps = Agg( ivy"com.lihaoyi::acyclic:0.2.0") diff --git a/mill b/mill index 3e567e5c..aa00687b 100755 --- a/mill +++ b/mill @@ -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.7 +DEFAULT_MILL_VERSION=0.6.1 set -e diff --git a/readme.md b/readme.md index 26bc83d5..b9f73fd3 100644 --- a/readme.md +++ b/readme.md @@ -239,6 +239,11 @@ To publish, run the following commands: ## Changelog +### 0.2.4 + +- Add support for syntactical key ordering [#53](https://github.com/databricks/sjsonnet/pull/53) +- Bump dependency versions + ### 0.2.2 - Bump verion of Scalatags, uPickle