Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions documentation/manual/releases/release26/Highlights26.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ You can select which version of Scala you would like to use by setting the `scal
For Scala 2.12:

```scala
scalaVersion := "2.12.19"
scalaVersion := "2.12.20"
```

For Scala 2.11:
Expand All @@ -31,7 +31,7 @@ lazy val root = (project in file("."))
.enablePlugins(PlayService)
.enablePlugins(RoutesCompiler) // place routes in src/main/resources, or remove if using SIRD/RoutingDsl
.settings(
scalaVersion := "2.12.19",
scalaVersion := "2.12.20",
libraryDependencies ++= Seq(
guice, // remove if not using Play's Guice loader
akkaHttpServer, // or use nettyServer for Netty
Expand Down
2 changes: 1 addition & 1 deletion documentation/manual/releases/release27/Highlights27.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ You can select which version of Scala you would like to use by setting the `scal
For Scala 2.12:

```scala
scalaVersion := "2.12.19"
scalaVersion := "2.12.20"
```

For Scala 2.11:
Expand Down
2 changes: 1 addition & 1 deletion project/Versions.scala
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
*/

object ScalaVersions {
val scala212 = "2.12.19"
val scala212 = "2.12.20"
val scala213 = "2.13.14"
val scala3 = "3.3.3"
}
Expand Down