Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
4 changes: 3 additions & 1 deletion CHANGELOG.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,9 @@

### Changed

* Update Scala.js 1.0.0-RC2, previously was 1.0.0-M8
* Update Scala.js to 1.0.0-RC2, previously was 1.0.0-M8.

* Update Scala.js to 0.6.31, previously was 0.6.29.

### Fixed

Expand Down
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ lazy val scalaVersionSettings = Seq(
)

lazy val scalaJSVersion =
env("SCALAJS_VERSION").getOrElse("0.6.29")
env("SCALAJS_VERSION").getOrElse("0.6.31")

lazy val sharedSettings = MimaSettings.settings ++ scalaVersionSettings ++ Seq(

Expand Down
2 changes: 1 addition & 1 deletion examples/scalajs/project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
addSbtPlugin("org.scala-js" % "sbt-scalajs" % "0.6.29")
addSbtPlugin("org.scala-js" % "sbt-scalajs" % "0.6.31")
2 changes: 1 addition & 1 deletion project/plugin.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ def printAndDie(msg: String): Nothing = {

// Update SCALAJS_VERSION in release.sh, as well
val scalaJSVersion = env("SCALAJS_VERSION") match {
case Some("0.6.29") | None => "0.6.29"
case Some("0.6.31") | None => "0.6.31"
case Some("1.0.0-RC2") => "1.0.0-RC2"
case Some(v) => printAndDie(s"unsupported scala.js version: $v")
}
Expand Down
2 changes: 1 addition & 1 deletion release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ runsbt "+ clean"
runsbt "+ jvm/$CMD"

# step 4b: js releases (clean versions)
SCALAJS_VERSION="0.6.29" runsbt "+ js/$CMD"
SCALAJS_VERSION="0.6.31" runsbt "+ js/$CMD"
runsbt "+ js/clean"
SCALAJS_VERSION="1.0.0-RC2" runsbt "+ js/$CMD"

Expand Down