Skip to content

Releases: sbt/sbt-unidoc

0.5.0

23 Oct 21:22
v0.5.0
46e84da
Compare
Choose a tag to compare

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

0.4.3

29 Jan 15:32
v0.4.3
6050d2c
Compare
Choose a tag to compare

0.4.2

11 Jun 09:27
@2m 2m
89f0247
Compare
Choose a tag to compare

0.4.1

04 Aug 05:14
v0.4.1
Compare
Choose a tag to compare

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.

0.4.0

12 Feb 18:36
v0.4.0
Compare
Choose a tag to compare

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