Skip to content

Scalafix v0.9.0-RC1

Compare
Choose a tag to compare
@olafurpg olafurpg released this 21 Sep 15:50
47cfbfe

It's barely been 24 hours since Scalafix https://github.com/scalacenter/scalafix/releases/tag/v0.8.0-RC1 release but a lot has happened since then :)

Feature improvements

Rule authors

scalafix-noinfer

wrote 'stricter Scala with -Xlint, -Xfatal-warnings, and Scalafix'. I am so excited about the Scalafix 0.8.0-RC1 that came out today that I wrote a custom Scalafix rule scalafix-noinfer. #scala http://eed3si9n.com/stricter-scala-with-xlint-xfatal-warnings-and-scalafix

Breaking changes

This release bumps the minor version since the signature of scalafix.v1.IdTree has changed

// before
case class IdTree(symbol: Symbol)
// now
case class IdTree(info: SymbolInfo) { def symbol = info.symbol }

Big thanks to everybody who reported issues and contributed to this release!