Releases: ghik/silencer
Releases · ghik/silencer
1.7.9
1.7.8
1.7.7
1.7.6
Scala 2.12.15 support (thx @dongjoon-hyun)
1.7.5
1.7.4
v1.7.0
This release brings partial support for @nowarn
annotation introduced in Scala 2.13.2. silencer
allows it to be used in Scala 2.11 and 2.12. The annotation itself is provided by scala-collection-compat.
Support for @nowarn
is partial because silencer
doesn't understand filters which may be specified in an argument to @nowarn
. The only filter understood by silencer
is msg=<pattern>
. All other filters are interpreted as suppressing all warnings.
v1.6.0
v1.5.0
v1.4.3
Since this version, silencer
is fully cross versioned and released for every minor Scala version.
val silencerVersion = "1.4.3"
libraryDependencies ++= Seq(
compilerPlugin("com.github.ghik" % "silencer-plugin" % silencerVersion cross CrossVersion.full),
"com.github.ghik" % "silencer-lib" % silencerVersion % Provided cross CrossVersion.full
)