Skip to content

Commit 0df2f59

Browse files
committed
Adjustments for 3.1.0 final release.
1 parent 9555151 commit 0df2f59

File tree

4 files changed

+8
-6
lines changed

4 files changed

+8
-6
lines changed

project/BuildCommons.scala

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ import scala.io.Source
55

66
trait BuildCommons {
77

8-
lazy val supportedScalaVersions = List("2.13.0", "2.12.10", "2.11.12", "2.10.7")
8+
lazy val supportedScalaVersions = List("2.13.1", "2.12.10", "2.11.12", "2.10.7")
99

10-
val releaseVersion = "3.1.0-RC4"
10+
val releaseVersion = "3.1.0"
1111

1212
val previousReleaseVersion = "3.0.8"
1313

project/JsBuild.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import org.portablescala.sbtplatformdeps.PlatformDepsPlugin.autoImport._
1414

1515
trait JsBuild { this: BuildCommons =>
1616

17-
val scalaJSVersion = Option(System.getenv("SCALAJS_VERSION")).getOrElse("0.6.28")
17+
val scalaJSVersion = Option(System.getenv("SCALAJS_VERSION")).getOrElse("0.6.31")
1818

1919
lazy val deleteJsDependenciesTask = taskKey[Unit]("Delete JS_DEPENDENCIES")
2020

project/plugins.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ addSbtPlugin("com.jsuereth" % "sbt-pgp" % "1.1.1")
44

55
addSbtPlugin("com.typesafe.sbt" % "sbt-osgi" % "0.9.4")
66

7-
val scalaJSVersion = Option(System.getenv("SCALAJS_VERSION")).getOrElse("0.6.28")
7+
val scalaJSVersion = Option(System.getenv("SCALAJS_VERSION")).getOrElse("0.6.31")
88

99
addSbtPlugin("org.scala-js" % "sbt-scalajs" % scalaJSVersion)
1010

publish.sh

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11
sbt scalatestCompatible/clean scalatestCompatible/publishSigned
2-
export SCALAJS_VERSION=0.6.29
2+
export SCALAJS_VERSION=0.6.31
33
sbt "project scalatestApp" clean +publishSigned
44
sbt "project scalatestAppJS" clean +publishSigned
55
export SCALAJS_VERSION=1.0.0-M8
6-
sbt "project scalatestAppJS" clean +publishSigned
6+
sbt ++2.11.12 "project scalatestAppJS" clean publishSigned
7+
sbt ++2.12.10 "project scalatestAppJS" clean publishSigned
8+
sbt ++2.13.1 "project scalatestAppJS" clean publishSigned
79
sbt ++2.11.12 "project scalatestAppNative" clean publishSigned
810
sbt scalacticDotty/clean scalacticDotty/publishSigned
911
sbt scalatestDotty/clean scalatestDotty/publishSigned

0 commit comments

Comments
 (0)