Skip to content

Commit 6464e98

Browse files
authored
Merge pull request #594 from ashawley/1.14/sbt-scala-js-0.6.31
Cherry-pick update Scala.js 0.6.31
2 parents 11ba168 + b1582c7 commit 6464e98

File tree

5 files changed

+7
-5
lines changed

5 files changed

+7
-5
lines changed

CHANGELOG.markdown

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,9 @@
44

55
### Changed
66

7-
* Update Scala.js 1.0.0-RC2, previously was 1.0.0-M8
7+
* Update Scala.js to 1.0.0-RC2, previously was 1.0.0-M8.
8+
9+
* Update Scala.js to 0.6.31, previously was 0.6.29.
810

911
### Fixed
1012

build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ lazy val scalaVersionSettings = Seq(
2525
)
2626

2727
lazy val scalaJSVersion =
28-
env("SCALAJS_VERSION").getOrElse("0.6.29")
28+
env("SCALAJS_VERSION").getOrElse("0.6.31")
2929

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
addSbtPlugin("org.scala-js" % "sbt-scalajs" % "0.6.29")
1+
addSbtPlugin("org.scala-js" % "sbt-scalajs" % "0.6.31")

project/plugin.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ def printAndDie(msg: String): Nothing = {
1212

1313
// Update SCALAJS_VERSION in release.sh, as well
1414
val scalaJSVersion = env("SCALAJS_VERSION") match {
15-
case Some("0.6.29") | None => "0.6.29"
15+
case Some("0.6.31") | None => "0.6.31"
1616
case Some("1.0.0-RC2") => "1.0.0-RC2"
1717
case Some(v) => printAndDie(s"unsupported scala.js version: $v")
1818
}

release.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ runsbt "+ clean"
5353
runsbt "+ jvm/$CMD"
5454

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

0 commit comments

Comments
 (0)