Releases: ghik/silencer
Releases · ghik/silencer
1.4.0
This version comes with two new features:
-
@silent
annotation now accepts an optional message pattern (regex) argument which can be used to suppress specific classes of warnings, e.g.@silent("deprecated") def usesDeprecatedApi(): Unit = someDeprecatedApi()
-
The plugin can now be configured to reject with an error any redundant
@silent
annotations which don't suppress any warnings (fixes #28). This can be enabled with thecheckUnused
flag:scalacOptions += "-P:silencer:checkUnused"
1.3.4
v1.3.0
This version introduces file path filtering by @mihaisoloi