Skip to content

Commit

Permalink
Merge pull request #48 from alexarchambault/topic/updates
Browse files Browse the repository at this point in the history
Bump dependency versions
  • Loading branch information
alexarchambault committed Oct 24, 2016
2 parents 6d5d99f + b3f20d3 commit 566a8bf
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 8 deletions.
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
language: scala
scala:
- 2.12.0-RC2
- 2.11.8
- 2.10.6
jdk:
Expand Down
6 changes: 3 additions & 3 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ lazy val core = crossProject
name := coreName,
moduleName := coreName,
libraryDependencies ++= Seq(
"org.scalacheck" %%% "scalacheck" % "1.13.2",
"org.scalacheck" %%% "scalacheck" % "1.13.3",
"com.chuusai" %%% "shapeless" % "2.3.2"
)
)
Expand All @@ -32,7 +32,7 @@ lazy val test = crossProject
.settings(commonSettings: _*)
.settings(noPublishSettings: _*)
.settings(
libraryDependencies += "com.lihaoyi" %%% "utest" % "0.3.0" % "test",
libraryDependencies += "com.lihaoyi" %%% "utest" % "0.4.4" % "test",
testFrameworks += new TestFramework("utest.runner.Framework")
)
.jsSettings(
Expand All @@ -56,7 +56,7 @@ lazy val compileSettings = Seq(
),
libraryDependencies ++= {
if (scalaVersion.value.startsWith("2.10."))
Seq(compilerPlugin("org.scalamacros" % "paradise" % "2.0.1" cross CrossVersion.full))
Seq(compilerPlugin("org.scalamacros" % "paradise" % "2.1.0" cross CrossVersion.full))
else
Seq()
},
Expand Down
6 changes: 3 additions & 3 deletions project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
addSbtPlugin("com.jsuereth" % "sbt-pgp" % "1.0.0")
addSbtPlugin("com.typesafe" % "sbt-mima-plugin" % "0.1.7")
addSbtPlugin("org.scala-js" % "sbt-scalajs" % "0.6.9")
addSbtPlugin("io.get-coursier" % "sbt-coursier" % "1.0.0-M11")
addSbtPlugin("com.typesafe" % "sbt-mima-plugin" % "0.1.11")
addSbtPlugin("org.scala-js" % "sbt-scalajs" % "0.6.13")
addSbtPlugin("io.get-coursier" % "sbt-coursier" % "1.0.0-M14")
1 change: 1 addition & 0 deletions project/project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
addSbtPlugin("io.get-coursier" % "sbt-coursier" % "1.0.0-M14")
Original file line number Diff line number Diff line change
Expand Up @@ -498,7 +498,7 @@ object ArbitraryTests extends TestSuite {
false
}
catch {
case _: utest.AssertionError => true
case _: java.lang.AssertionError => true
}

assert(result)
Expand Down
2 changes: 1 addition & 1 deletion test/shared/src/test/scala/org/scalacheck/CogenTests.scala
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ object CogenTests extends TestSuite {
false
}
catch {
case _: utest.AssertionError => true
case _: java.lang.AssertionError => true
}

assert(result)
Expand Down

0 comments on commit 566a8bf

Please sign in to comment.