Skip to content

Commit

Permalink
Merge pull request #1519 from bjaglin/scala2138
Browse files Browse the repository at this point in the history
support scala 2.13.8
  • Loading branch information
bjaglin authored Jan 11, 2022
2 parents 6f6dbff + 8e64923 commit 0a202ab
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .scalafix.conf
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
rules = [
ExplicitResultTypes,
# ExplicitResultTypes,
OrganizeImports
]

Expand Down
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.7:$version \
ch.epfl.scala:scalafix-reflect_2.13.8:$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.7:$version \
ch.epfl.scala:scalafix-cli_2.13.8:$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.7:$version \
ch.epfl.scala:scalafix-testkit_2.13.8:$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.7"
val scala213 = "2.13.8"
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.31"
val scalametaV = "4.4.32"
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
1 change: 1 addition & 0 deletions project/ScalafixBuild.scala
Original file line number Diff line number Diff line change
Expand Up @@ -177,6 +177,7 @@ object ScalafixBuild extends AutoPlugin with GhpagesKeys {
)

private val PreviousScalaVersion: Map[String, String] = Map(
"2.13.8" -> "2.13.7"
)

override def projectSettings: Seq[Def.Setting[_]] = List(
Expand Down

0 comments on commit 0a202ab

Please sign in to comment.