Skip to content

Scalafix 0.3.3

Compare
Choose a tag to compare
@olafurpg olafurpg released this 11 Sep 17:16
· 3625 commits to main since this release
  • NOTE. scalafix-core and scalafix-cli are now published as CrossVersion.full, meaning the artifact IDs now have a _2.11.11 suffix. To depend on them,

    // OK
    libraryDependencies +=
      "ch.epfl.scala" % "scalafix-core" % "0.5.0-RC3" cross CrossVersion.full
    // Error
    libraryDependencies +=
      "ch.epfl.scala" %% "scalafix-core" % "0.5.0-RC3"
    
  • NOTE. This version depends on a pre-release of scala.meta, which is publised to the scalameta bintray repository and requires

    resolvers += Resolver.bintrayRepo("scalameta", "maven")
    
  • scalafix-cli new supports running semantic rules with the --classpath/--sourcepath options.

  • scalafix-cli now supports .sbt files.

  • New documentation for scalafix-cli.