Skip to content

Commit d1d4e40

Browse files
committed
🏗️ build: upgrade Scala Parser Combinators to 2.x for Scala 2.13
1 parent 6913b32 commit d1d4e40

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

build.sbt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -113,8 +113,8 @@ val armShading = Seq(
113113

114114
lazy val parserCombinatorsVer = Def.setting[String] {
115115
CrossVersion.partialVersion(scalaVersion.value) match {
116-
case Some((2, n)) => "1.1.2"
117-
case _ => "2.4.0"
116+
case Some((2, n)) if n < 13 => "1.1.2"
117+
case _ => "2.4.0"
118118
}
119119
}
120120

0 commit comments

Comments
 (0)