Skip to content

Commit

Permalink
Update scala-library to 2.13.13
Browse files Browse the repository at this point in the history
  • Loading branch information
scala-steward-bot authored and xuwei-k committed Feb 23, 2024
1 parent 82e24bb commit d0ba472
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import Dependencies._
val basicSettings = Seq(
shellPrompt := { s => Project.extract(s).currentProject.id + " > " },
version := "1.4.1",
scalaVersion := "2.13.12",
scalaVersion := "2.13.13",
homepage := Some(url("http://parboiled.org")),
organization := "org.parboiled",
organizationHomepage := Some(url("http://parboiled.org")),
Expand Down Expand Up @@ -43,7 +43,7 @@ val basicSettings = Seq(
(doc / scalacOptions) ++= Seq("-doc-title", name.value, "-doc-version", version.value),

// publishing
crossScalaVersions := Seq("2.12.19", "2.13.12", "3.3.2"),
crossScalaVersions := Seq("2.12.19", "2.13.13", "3.3.2"),
scalaBinaryVersion := {
if (CrossVersion.isScalaApiCompatible(scalaVersion.value)) CrossVersion.binaryScalaVersion(scalaVersion.value)
else scalaVersion.value
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ class JsonParser0 extends Parser {
* We redefine the default string-to-rule conversion to also match trailing whitespace if the string ends with
* a blank, this keeps the rules free from most whitespace matching clutter
*/
override implicit def toRule(string: String) =
override implicit def toRule(string: String): Rule0 =
if (string.endsWith(" "))
str(string.trim) ~ WhiteSpace
else
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ class JsonParser1 extends Parser {
* We redefine the default string-to-rule conversion to also match trailing whitespace if the string ends with
* a blank, this keeps the rules free from most whitespace matching clutter
*/
override implicit def toRule(string: String) =
override implicit def toRule(string: String): Rule0 =
if (string.endsWith(" "))
str(string.trim) ~ WhiteSpace
else
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ class JsonParser2 extends Parser {
* We redefine the default string-to-rule conversion to also match trailing whitespace if the string ends with
* a blank, this keeps the rules free from most whitespace matching clutter
*/
override implicit def toRule(string: String) =
override implicit def toRule(string: String): Rule0 =
if (string.endsWith(" "))
str(string.trim) ~ WhiteSpace
else
Expand Down

0 comments on commit d0ba472

Please sign in to comment.