Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Bump dependencies
  • Loading branch information
alexarchambault committed Nov 21, 2016
commit ffe56dc386f2f2882f61127667e2982dd297bc82
12 changes: 6 additions & 6 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,9 @@ lazy val `circe-alt-generic` = crossProject
libraryDependencies ++= Seq(
"io.circe" %%% "circe-core" % circeVersion,
"io.circe" %%% "circe-parser" % circeVersion,
"com.chuusai" %%% "shapeless" % "2.3.1",
"com.github.alexarchambault" %%% "scalacheck-shapeless_1.13" % "1.1.0-RC3" % "test",
"com.lihaoyi" %%% "utest" % "0.3.0" % "test"
"com.chuusai" %%% "shapeless" % "2.3.2",
"com.github.alexarchambault" %%% "scalacheck-shapeless_1.13" % "1.1.4" % "test",
"com.lihaoyi" %%% "utest" % "0.4.4" % "test"
),
testFrameworks += new TestFramework("utest.runner.Framework")
)
Expand All @@ -58,7 +58,7 @@ lazy val render = crossProject
.jsSettings(
libraryDependencies ++= Seq(
"io.circe" %%% "circe-scalajs" % circeVersion,
"org.scala-js" %%% "scalajs-dom" % "0.9.0"
"org.scala-js" %%% "scalajs-dom" % "0.9.1"
)
)

Expand All @@ -75,7 +75,7 @@ lazy val demo = project
test in Test := (),
testOnly in Test := (),
libraryDependencies ++= Seq(
"com.lihaoyi" %%% "scalatags" % "0.5.5"
"com.lihaoyi" %%% "scalatags" % "0.6.2"
),
jsDependencies ++= Seq(
("org.webjars.bower" % "plotly.js" % plotlyVersion intransitive()) / "plotly.min.js" commonJSName "Plotly",
Expand Down Expand Up @@ -173,7 +173,7 @@ lazy val tests = project
name := "plotly-tests",
libraryDependencies ++= Seq(
"io.circe" %% "circe-literal" % circeVersion % "test",
"org.scalatest" %% "scalatest" % "3.0.0-M11" % "test",
"org.scalatest" %% "scalatest" % "3.0.1" % "test",
"org.mozilla" % "rhino" % "1.7.7.1" % "test"
)
)
Expand Down
4 changes: 2 additions & 2 deletions project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
addSbtPlugin("io.get-coursier" % "sbt-coursier" % "1.0.0-M13")
addSbtPlugin("org.scala-js" % "sbt-scalajs" % "0.6.11")
addSbtPlugin("io.get-coursier" % "sbt-coursier" % "1.0.0-M14-9")
addSbtPlugin("org.scala-js" % "sbt-scalajs" % "0.6.13")
addSbtPlugin("com.jsuereth" % "sbt-pgp" % "1.0.0")
addSbtPlugin("com.typesafe" % "sbt-mima-plugin" % "0.1.9")