From 05774399bc5d5022b156ca49ba63bfe1700b1bfc Mon Sep 17 00:00:00 2001 From: Seth Tisue Date: Fri, 18 Aug 2023 07:33:01 -0700 Subject: [PATCH] Update README.md --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index cf963d4..ec452b2 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ Add the `sbt-scalafix` sbt plugin, with the SemanticDB compiler plugin enabled ( ```scala // project/plugins.sbt -addSbtPlugin("ch.epfl.scala" % "sbt-scalafix" % "0.10.4") +addSbtPlugin("ch.epfl.scala" % "sbt-scalafix" % "0.11.0") ``` ```scala @@ -22,13 +22,13 @@ inThisBuild(List( Then run the desired rewrite(s) ([official docs][2]), in sbt: ```scala -> scalafixAll dependency:fix.scala213.ExplicitNonNullaryApply@org.scala-lang:scala-rewrites:0.1.2 +> scalafixAll dependency:fix.scala213.ExplicitNonNullaryApply@org.scala-lang:scala-rewrites: ``` You can also add the following to your `build.sbt`: ```scala -ThisBuild / scalafixDependencies += "org.scala-lang" %% "scala-rewrites" % "0.1.3" +ThisBuild / scalafixDependencies += "org.scala-lang" %% "scala-rewrites" % "" ``` and then: