Skip to content

Commit

Permalink
Merge pull request #469 from adpi2/update-versions
Browse files Browse the repository at this point in the history
Update Scala, scalafmt, scalafix, sbt-buildinfo versions
  • Loading branch information
adpi2 authored May 1, 2024
2 parents ff524c1 + e9f2d10 commit 455937a
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .scalafmt.conf
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version = "3.7.15"
version = "3.8.1"
runner.dialect = scala213
maxColumn = 120
align.preset = most
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ The complete documentation of `sbt-scala3-migrate` can be found in [docs.scala-l
### Requirements
- sbt 1.5 or higher
- java 8 or 11
- scala 2.13, preferred 2.13.11
- scala 2.13, preferred 2.13.14

### Installation
```
Expand Down
6 changes: 3 additions & 3 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -227,12 +227,12 @@ addCommandAlias("compileScalafixOutputinScala3", s"""set `scalafix-output`/scala
def isCI = System.getenv("CI") != null

lazy val V = new {
val scala213 = "2.13.12"
val scala213 = "2.13.13"
val scala213BinaryVersion = "2.13"
val scala212 = "2.12.18"
val scala212 = "2.12.19"
val scalatest = "3.2.18"
val scala3 = "3.3.3"
val scalafix = "0.11.1"
val scalafix = "0.12.0"
val catsCore = "2.10.0"
val kindProjector = "0.13.3"
val coursierApi = "2.1.9"
Expand Down
2 changes: 1 addition & 1 deletion plugin/src/main/scala/migrate/Messages.scala
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ private[migrate] object Messages {
def notScala213(scalaVersion: String, projectId: String): String =
s"""|The current Scala Version of $projectId is $scalaVersion
|Before migrating to Scala 3, please upgrade to the latest 2.13 version.
|${YELLOW}scalaVersion := "2.13.11"$RESET
|${YELLOW}scalaVersion := "2.13.14"$RESET
|""".stripMargin
}
4 changes: 2 additions & 2 deletions project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
addSbtPlugin("com.eed3si9n" % "sbt-buildinfo" % "0.11.0")
addSbtPlugin("ch.epfl.scala" % "sbt-scalafix" % "0.11.1")
addSbtPlugin("com.eed3si9n" % "sbt-buildinfo" % "0.12.0")
addSbtPlugin("ch.epfl.scala" % "sbt-scalafix" % "0.12.0")
addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.5.12")

0 comments on commit 455937a

Please sign in to comment.