Skip to content

Commit

Permalink
Merge pull request #636 from SethTisue/dont-recommend-ancient-scala-v…
Browse files Browse the repository at this point in the history
…ersion

don't recommend very old Scala version
  • Loading branch information
sjrd authored May 21, 2024
2 parents bfd68fe + c277975 commit bcae09a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion doc/project/cross-build.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ addSbtPlugin("org.portable-scala" % "sbt-scalajs-crossproject" % "1.2.0")
You can then use the `crossProject` builder in your `build.sbt` file:

{% highlight scala %}
ThisBuild / scalaVersion := "2.13.1"
ThisBuild / scalaVersion := "2.13.14"

lazy val root = project.in(file(".")).
aggregate(foo.js, foo.jvm).
Expand Down
2 changes: 1 addition & 1 deletion doc/tutorial/basic/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ We also setup basic project settings and enable this plugin in the sbt build fil
enablePlugins(ScalaJSPlugin)

name := "Scala.js Tutorial"
scalaVersion := "2.13.1" // or any other Scala version >= 2.11.12
scalaVersion := "2.13.14" // or a newer version such as "3.4.2", if you like

// This is an application with a main method
scalaJSUseMainModuleInitializer := true
Expand Down

0 comments on commit bcae09a

Please sign in to comment.