Skip to content

Commit bcae09a

Browse files
authored
Merge pull request #636 from SethTisue/dont-recommend-ancient-scala-version
don't recommend very old Scala version
2 parents bfd68fe + c277975 commit bcae09a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

doc/project/cross-build.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ addSbtPlugin("org.portable-scala" % "sbt-scalajs-crossproject" % "1.2.0")
3838
You can then use the `crossProject` builder in your `build.sbt` file:
3939

4040
{% highlight scala %}
41-
ThisBuild / scalaVersion := "2.13.1"
41+
ThisBuild / scalaVersion := "2.13.14"
4242

4343
lazy val root = project.in(file(".")).
4444
aggregate(foo.js, foo.jvm).

doc/tutorial/basic/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ We also setup basic project settings and enable this plugin in the sbt build fil
3636
enablePlugins(ScalaJSPlugin)
3737

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

4141
// This is an application with a main method
4242
scalaJSUseMainModuleInitializer := true

0 commit comments

Comments
 (0)