From e4fcf49fd83f2e4b8c24518c2281e726c5486ec4 Mon Sep 17 00:00:00 2001 From: Aliaksandr Siamionau Date: Mon, 26 Sep 2022 12:20:12 +0300 Subject: [PATCH] Rollback scala-parser-combinators to 1.1.2 Should fix #586 upon publishing. --- build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index 9cc839ad..568ff419 100644 --- a/build.sbt +++ b/build.sbt @@ -65,7 +65,7 @@ lazy val commonSettings = Seq( def mainDependencies(scalaVersion: String) = { val extractedLibs = CrossVersion.partialVersion(scalaVersion) match { case Some((2, scalaMajor)) if scalaMajor >= 11 => - Seq("org.scala-lang.modules" %% "scala-parser-combinators" % "2.1.1") + Seq("org.scala-lang.modules" %% "scala-parser-combinators" % "1.1.2") case _ => Seq() }