Skip to content

Commit

Permalink
0.5.9
Browse files Browse the repository at this point in the history
  • Loading branch information
lihaoyi committed Feb 7, 2020
1 parent 4c56a36 commit f30d30d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 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.8"
def publishVersion = "0.5.9"

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.8",
ivy"com.lihaoyi::sourcecode::0.2.0"
ivy"com.lihaoyi::fansi::0.2.9",
ivy"com.lihaoyi::sourcecode::0.2.1"
)
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.3")
def ivyDeps = Agg(ivy"com.lihaoyi::utest::0.7.4")
def offset: os.RelPath = os.rel
def millSourcePath = super.millSourcePath / os.up

Expand Down Expand Up @@ -107,7 +107,7 @@ object pprint extends Module {

object js extends Cross[JsPPrintModule](
("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")
("2.12.8", "1.0.0"), ("2.13.0", "1.0.0")
)
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.7
DEFAULT_MILL_VERSION=0.6.0-15-ee0405

set -e

Expand Down

0 comments on commit f30d30d

Please sign in to comment.