Skip to content

Commit

Permalink
Scala 2.13.11
Browse files Browse the repository at this point in the history
  • Loading branch information
bjaglin committed Jun 3, 2023
1 parent 2628011 commit 8159e33
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion docs/developers/patch.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ the syntax tree of the following input source file
import scalafix.docs.PatchDocs._
import scalafix.v1._
import scala.meta._
implicit var doc = scalafix.docs.PatchDocs.fromString("""
implicit var doc: SemanticDocument = scalafix.docs.PatchDocs.fromString("""
import scala.concurrent.{Future, Await}
import scala.util._, hashing.{MurmurHash3 => Hash}
Expand Down
2 changes: 1 addition & 1 deletion docs/developers/symbol-matcher.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ differences between exact and normalized symbol matchers, we use the following
input source file as a running example.

```scala mdoc:passthrough
implicit var doc = PatchDocs.fromString("""
implicit var doc: SemanticDocument = PatchDocs.fromString("""
package com
class Main() {} // com/Main# class
object Main extends App { // com/Main. object
Expand Down
2 changes: 1 addition & 1 deletion project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import scala.util.Try

object Dependencies {
val scala212 = "2.12.18"
val scala213 = "2.13.10"
val scala213 = "2.13.11"
val scala3 = "3.3.1-RC1"

val buildScalaVersions = Seq(scala212, scala213, scala3)
Expand Down
3 changes: 2 additions & 1 deletion project/ScalafixBuild.scala
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,8 @@ object ScalafixBuild extends AutoPlugin with GhpagesKeys {
)

private val PreviousScalaVersion: Map[String, String] = Map(
"2.12.18" -> "2.12.17"
"2.12.18" -> "2.12.17",
"2.13.11" -> "2.13.10"
)

override def buildSettings: Seq[Setting[_]] = List(
Expand Down

0 comments on commit 8159e33

Please sign in to comment.