Skip to content

Commit

Permalink
Build: Bump to Scala 3.2.0 (and thus Scala.js 1.9.0) to avoid sourcem…
Browse files Browse the repository at this point in the history
…aps off-by-one bug

scala/scala3#14240
  • Loading branch information
raquo committed Sep 27, 2022
1 parent 134e854 commit dde35c1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ organization := "be.doeraene"

inThisBuild(
Def.settings(
version := "0.4.0",
crossScalaVersions := Seq("3.0.0", "2.13.5", "2.12.13"),
version := "0.4.1",
crossScalaVersions := Seq("3.2.0", "2.13.5", "2.12.13"),
scalaVersion := crossScalaVersions.value.head,
scalacOptions ++= Seq("-feature", "-deprecation")
)
Expand Down
2 changes: 1 addition & 1 deletion project/plugins.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ addSbtPlugin("com.github.sbt" % "sbt-pgp" % "2.1.2")
addSbtPlugin("com.typesafe.sbt" % "sbt-git" % "1.0.0")

val scalaJSVersion =
Option(System.getenv("SCALAJS_VERSION")).getOrElse("1.5.0")
Option(System.getenv("SCALAJS_VERSION")).getOrElse("1.9.0")

addSbtPlugin("org.portable-scala" % "sbt-scalajs-crossproject" % "1.0.0")
addSbtPlugin("org.scala-js" % "sbt-scalajs" % scalaJSVersion)

0 comments on commit dde35c1

Please sign in to comment.