Sbt Unidoc Versions Save

sbt plugin to create a unified Scaladoc or Javadoc API document across multiple subprojects.

v0.5.0

2 years ago

Breaking changes:

  • Note: Organization has moved from com.eed3si9n to com.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

v0.4.3

4 years ago

v0.4.2

6 years ago

v0.4.1

6 years ago

cross building for sbt 1.0

sbt-unidoc is cross published to both sbt 0.13 and sbt 1.x.

This was contributed by @liff in #38. To verify the PR, @xuwei-k contributed tests in #40 and #42.

v0.4.0

7 years ago

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: _*)