Skip to content

Commit

Permalink
Add support for Scala 2.12.16
Browse files Browse the repository at this point in the history
  • Loading branch information
tgodzik committed Jun 8, 2022
1 parent 0f6851d commit b76ac89
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
1 change: 1 addition & 0 deletions bin/test-release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,5 @@ coursier fetch \
org.scalameta:mtags_2.12.13:$version \
org.scalameta:mtags_2.12.14:$version \
org.scalameta:mtags_2.12.15:$version \
org.scalameta:mtags_2.12.16:$version \
org.scalameta:mtags_2.11.12:$version $suffix
5 changes: 3 additions & 2 deletions project/V.scala
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@ import sbt._
object V {
val scala210 = "2.10.7"
val scala211 = "2.11.12"
val scala212 = "2.12.15"
val scala212 = "2.12.16"
val scala213 = "2.13.8"
val scala3 = "3.1.2"
val nextScala3RC = "3.1.3-RC4"
val sbtScala = "2.12.14"
val ammonite212Version = scala212
val ammonite212Version = "2.12.15"
val ammonite213Version = "2.13.7"

val ammonite = "2.5.4"
Expand Down Expand Up @@ -73,6 +73,7 @@ object V {
def nonDeprecatedScala2Versions = Seq(
scala213,
scala212,
"2.12.15",
"2.12.14",
"2.12.13",
"2.12.12",
Expand Down
4 changes: 2 additions & 2 deletions tests/unit/src/test/scala/tests/FormattingLspSuite.scala
Original file line number Diff line number Diff line change
Expand Up @@ -411,10 +411,10 @@ class FormattingLspSuite extends BaseLspSuite("formatting") {
s"""|/metals.json
|{
| "a": {
| "scalaVersion": "2.12.15"
| "scalaVersion": "${V.scala212}"
| },
| "b": {
| "scalaVersion": "2.12.15",
| "scalaVersion": "${V.scala212}",
| "scalacOptions": ["-Xsource:3"],
| "sbtVersion": "1.6.0-RC2"
| }
Expand Down

0 comments on commit b76ac89

Please sign in to comment.