Skip to content

Commit

Permalink
Bump sbt-tpolecat to 0.4.1
Browse files Browse the repository at this point in the history
Before bump:

```
sbt coverage +test
```

> [error] 'nullary-override' is not a valid choice for '-Xlint'

See: typelevel/sbt-tpolecat#24

After bump:

`sbt coverage +test` doesn't complain.
  • Loading branch information
dilyand authored and istreeter committed Nov 17, 2022
1 parent 00cb09b commit 8cae4ab
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ object JsonPath {
op <- operator
} yield r :: op

@scala.annotation.nowarn
def parse(str: String): Either[String, NonEmptyList[Cursor]] =
jsonPath.parseAll(str).leftMap {
case Parser.Error(failedAtOffset, expected) =>
Expand Down
2 changes: 1 addition & 1 deletion project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
addSbtPlugin("io.github.davidgregory084" % "sbt-tpolecat" % "0.1.11")
addSbtPlugin("io.github.davidgregory084" % "sbt-tpolecat" % "0.4.1")
addSbtPlugin("org.scoverage" % "sbt-scoverage" % "1.8.2")
addSbtPlugin("org.scoverage" % "sbt-coveralls" % "1.3.1")
addSbtPlugin("com.typesafe.sbt" % "sbt-site" % "1.4.0")
Expand Down

0 comments on commit 8cae4ab

Please sign in to comment.