Skip to content
This repository has been archived by the owner on Mar 16, 2020. It is now read-only.

Commit

Permalink
Build: Bump dependencies for v0.7
Browse files Browse the repository at this point in the history
  • Loading branch information
raquo committed Apr 15, 2018
1 parent ceb78b5 commit 3d8b98f
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

_Scala DOM Builder_ is a low level, unopinionated library for building and manipulating DOM trees (objects representing HTML tags and their attributes, properties and styles).

"com.raquo" %%% "dombuilder" % "0.6"
"com.raquo" %%% "dombuilder" % "0.7"

This library can be used in two ways: 1) directly for simple things, and 2) as a flexible foundation for a more opinionated UI library.

Expand Down
6 changes: 3 additions & 3 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ lazy val dombuilder = crossProject.in(file("."))
.settings(releaseSettings)
.settings(
libraryDependencies ++= Seq(
"com.raquo" %%% "domtypes" % "0.6.1-SNAPSHOT"
"com.raquo" %%% "domtypes" % "0.7"
)
)
.jsConfigure(_.enablePlugins(ScalaJSBundlerPlugin))
Expand All @@ -64,8 +64,8 @@ lazy val dombuilder = crossProject.in(file("."))
emitSourceMaps in fullOptJS := false,
libraryDependencies ++= Seq(
"org.scala-js" %%% "scalajs-dom" % "0.9.5",
"org.scalatest" %%% "scalatest" % "3.0.5" % Test,
"com.raquo" %%% "domtestutils" % "0.6.1-SNAPSHOT" % Test
"com.raquo" %%% "domtestutils" % "0.7" % Test,
"org.scalatest" %%% "scalatest" % "3.0.5" % Test
)
)
.jvmSettings()
Expand Down
2 changes: 1 addition & 1 deletion project/build.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
sbt.version = 0.13.15
sbt.version = 1.1.4
10 changes: 5 additions & 5 deletions project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
logLevel := Level.Warn

addSbtPlugin("org.scala-js" % "sbt-scalajs" % "0.6.19")
addSbtPlugin("org.scala-js" % "sbt-scalajs" % "0.6.22")

addSbtPlugin("ch.epfl.scala" % "sbt-scalajs-bundler" % "0.7.0")
addSbtPlugin("ch.epfl.scala" % "sbt-scalajs-bundler" % "0.12.0")

addSbtPlugin("com.jsuereth" % "sbt-pgp" % "1.0.0")
addSbtPlugin("com.jsuereth" % "sbt-pgp" % "1.1.0")

addSbtPlugin("com.github.gseitz" % "sbt-release" % "1.0.4")
addSbtPlugin("com.github.gseitz" % "sbt-release" % "1.0.8")

addSbtPlugin("org.xerial.sbt" % "sbt-sonatype" % "1.1")
addSbtPlugin("org.xerial.sbt" % "sbt-sonatype" % "2.3")

0 comments on commit 3d8b98f

Please sign in to comment.