Skip to content

Commit

Permalink
support scala 2.13.7
Browse files Browse the repository at this point in the history
  • Loading branch information
bjaglin committed Nov 2, 2021
1 parent bc85b89 commit 70f1b3f
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 6 deletions.
6 changes: 3 additions & 3 deletions bin/test-release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ cs resolve \
ch.epfl.scala:scalafix-core_2.13:$version \
ch.epfl.scala:scalafix-reflect_2.11.12:$version \
ch.epfl.scala:scalafix-reflect_2.12.15:$version \
ch.epfl.scala:scalafix-reflect_2.13.6:$version \
ch.epfl.scala:scalafix-reflect_2.13.7:$version \
ch.epfl.scala:scalafix-cli_2.11.12:$version \
ch.epfl.scala:scalafix-cli_2.12.15:$version \
ch.epfl.scala:scalafix-cli_2.13.6:$version \
ch.epfl.scala:scalafix-cli_2.13.7:$version \
ch.epfl.scala:scalafix-testkit_2.11.12:$version \
ch.epfl.scala:scalafix-testkit_2.12.15:$version \
ch.epfl.scala:scalafix-testkit_2.13.6:$version \
ch.epfl.scala:scalafix-testkit_2.13.7:$version \
-r sonatype:public
4 changes: 2 additions & 2 deletions project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import scala.util.Try
object Dependencies {
val scala211 = "2.11.12"
val scala212 = "2.12.15"
val scala213 = "2.13.6"
val scala213 = "2.13.7"
val scala3 = "3.1.0"
// we support 3 last binary versions of scala212 and scala213
val testedPreviousScalaVersions: Map[String, List[String]] =
Expand All @@ -28,7 +28,7 @@ object Dependencies {
val nailgunV = "0.9.1"
val scalaXmlV = "2.0.1"
val scalaXml211V = "1.3.0" // scala-xml stops publishing for scala 2.11
val scalametaV = "4.4.28"
val scalametaV = "4.4.30"
val scalatestV = "3.0.8" // don't bump, to avoid forcing breaking changes on clients via eviction

val bijectionCore = "com.twitter" %% "bijection-core" % bijectionCoreV
Expand Down
4 changes: 3 additions & 1 deletion project/ScalafixBuild.scala
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,9 @@ object ScalafixBuild extends AutoPlugin with GhpagesKeys {
developers ++= Developers.list
)

private val PreviousScalaVersion: Map[String, String] = Map()
private val PreviousScalaVersion: Map[String, String] = Map(
"2.13.7" -> 2.13.6"
)
override def projectSettings: Seq[Def.Setting[_]] = List(
scalacOptions ++= compilerOptions.value,
Expand Down

0 comments on commit 70f1b3f

Please sign in to comment.