Releases: sbt/sbt-unidoc
Releases · sbt/sbt-unidoc
0.5.0
Breaking changes:
- Note: Organization has moved from
com.eed3si9n
tocom.github.sbt
to automate the publishing using sbt-ci-release.
addSbtPlugin("com.github.sbt" % "sbt-unidoc" % "0.5.0")
- sbt-unidoc now requires sbt 1.5.x and above, and drops sbt 0.13 support #91 by @pikinier20
Updates
- Welcome Filip Zybała (@pikinier20), a new committer to sbt-unidoc
- Adds Scala 3 support #88 by @pikinier20
- Updates to using GitHub Actions #89 by @pikinier20
0.4.3
0.4.2
Updated genjavadoc to 0.11.
0.4.1
0.4.0
auto plugin
@nrinaudo contributed migration to auto plugin in #31.
Before:
import UnidocKeys._
val root = (project in file("."))
.aggregate(library, app)
.settings(commonSettings: _*)
.settings(unidocSettings: _*)
After:
val root = (project in file("."))
.enablePlugins(ScalaUnidocPlugin)
.aggregate(library, app)
.settings(commonSettings: _*)