Skip to content

Commit

Permalink
0.5.8
Browse files Browse the repository at this point in the history
  • Loading branch information
lihaoyi committed Jan 12, 2020
1 parent ea7c4be commit 4c56a36
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions build.sc
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import mill._, scalalib._, scalajslib._, scalanativelib._, publish._
trait PPrintModule extends PublishModule {
def artifactName = "pprint"

def publishVersion = "0.5.7"
def publishVersion = "0.5.8"

def pomSettings = PomSettings(
description = artifactName(),
Expand All @@ -23,8 +23,8 @@ trait PPrintModule extends PublishModule {
trait PPrintMainModule extends CrossScalaModule {
def millSourcePath = super.millSourcePath / offset
def ivyDeps = Agg(
ivy"com.lihaoyi::fansi::0.2.7",
ivy"com.lihaoyi::sourcecode::0.1.8"
ivy"com.lihaoyi::fansi::0.2.8",
ivy"com.lihaoyi::sourcecode::0.2.0"
)
def compileIvyDeps = Agg(
ivy"org.scala-lang:scala-reflect:${scalaVersion()}",
Expand Down Expand Up @@ -79,7 +79,7 @@ trait PPrintMainModule extends CrossScalaModule {
trait PPrintTestModule extends ScalaModule with TestModule {
def crossScalaVersion: String
def testFrameworks = Seq("utest.runner.Framework")
def ivyDeps = Agg(ivy"com.lihaoyi::utest::0.7.1")
def ivyDeps = Agg(ivy"com.lihaoyi::utest::0.7.3")
def offset: os.RelPath = os.rel
def millSourcePath = super.millSourcePath / os.up

Expand All @@ -106,8 +106,8 @@ object pprint extends Module {
}

object js extends Cross[JsPPrintModule](
("2.12.8", "0.6.28"),
("2.13.0", "0.6.28")/*, ("2.12.8", "1.0.0-M8"), ("2.13.0", "1.0.0-M8")*/
("2.12.8", "0.6.31"), ("2.13.0", "0.6.31"),
("2.12.8", "1.0.0-RC2"), ("2.13.0", "1.0.0-RC2")
)
class JsPPrintModule(val crossScalaVersion: String, crossJSVersion: String)
extends PPrintMainModule with ScalaJSModule with PPrintModule {
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 4c56a36

Please sign in to comment.