Skip to content

Commit

Permalink
Merge pull request #502 from adpi2/scala-2.13.15
Browse files Browse the repository at this point in the history
Bump to Scala 2.13.15
  • Loading branch information
adpi2 authored Sep 30, 2024
2 parents fe8dcf7 + db613de commit 533ea7a
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
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.14
- scala 2.13, preferred 2.13.15

### Installation
```
Expand Down
8 changes: 4 additions & 4 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -160,8 +160,8 @@ lazy val `scalafix-rules` = project
scalacOptions ++= List("-Wunused", "-P:semanticdb:synthetics:on"),
moduleName := "scala3-migrate-rules",
libraryDependencies ++= Seq(
"ch.epfl.scala" %% "scalafix-core" % V.scalafix,
"ch.epfl.scala" %% "scalafix-rules" % V.scalafix
"ch.epfl.scala" %% "scalafix-core" % V.scalafix,
("ch.epfl.scala" %% "scalafix-rules" % V.scalafix).cross(CrossVersion.full)
)
)

Expand Down Expand Up @@ -230,12 +230,12 @@ addCommandAlias("compileScalafixOutputinScala3", s"""set `scalafix-output`/scala
def isCI = System.getenv("CI") != null

lazy val V = new {
val scala213 = "2.13.14"
val scala213 = "2.13.15"
val scala213BinaryVersion = "2.13"
val scala212 = "2.12.20"
val scalatest = "3.2.19"
val scala3 = "3.3.4"
val scalafix = "0.12.1"
val scalafix = "0.13.0"
val catsCore = "2.10.0"
val kindProjector = "0.13.3"
val coursierApi = "2.1.13"
Expand Down
2 changes: 1 addition & 1 deletion project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
addSbtPlugin("com.eed3si9n" % "sbt-buildinfo" % "0.12.0")
addSbtPlugin("ch.epfl.scala" % "sbt-scalafix" % "0.12.1")
addSbtPlugin("ch.epfl.scala" % "sbt-scalafix" % "0.13.0")
addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.6.1")

0 comments on commit 533ea7a

Please sign in to comment.