Releases: sbt/sbt-unidoc
Releases · sbt/sbt-unidoc
0.6.1
sbt-unidoc 0.6.1 is cross published to:
| sbt Version | Published |
|---|---|
| 1.x | ✅ |
| 2.x | ✅ |
about sbt-unidoc
sbt-unidoc is an sbt plugin to unify scaladoc/javadoc across multiple subprojects, based on the unidoc task implemented by Peter Vlugter for Akka project.
🐛 bug fixes
behind the scenes
- Update sbt 2.0.0-RC6 by @xuwei-k in #205
- Update sbt, scripted-plugin to 1.11.7 by @scala-steward in #206
- ci: Create .scala-steward.conf by @eed3si9n in #208
- ci: Bump actions/checkout from 5 to 6 by @dependabot[bot] in #210
- Update scala3-library to 3.7.4 by @scala-steward in #209
- Update scala-library to 2.12.21 by @scala-steward in #211
Full Changelog: v0.6.0...v0.6.1
0.6.0
sbt-unidoc 0.6.0 is cross published to:
| sbt Version | Published |
|---|---|
| 1.x | ✅ |
| 2.x | ✅ |
about sbt-unidoc
sbt-unidoc is an sbt plugin to unify scaladoc/javadoc across multiple subprojects, based on the unidoc task implemented by Peter Vlugter for Akka project.
sbt 2.x migration
- Cross build against sbt 2.x by @eed3si9n in #198
- sbt 2.0.0-RC3 by @xuwei-k in #197
- refactor: Uses slash syntax by @xuwei-k in #102
- refactor: Adds parentheses
PathFinder.getby @xuwei-k in #175 - refactor: Adds parentheses to prepare for sbt 2.x by @xuwei-k in #166
- refactor: Uses new wildcard syntax by @xuwei-k in #194
- Update Scala 3 version in test by @xuwei-k in #172
Updates
- deps: Update to unidocGenjavadocVersion 0.19 by @xuwei-k in #195
- deps: Update to unidocGenjavadocVersion 0.18 by @ksen0byte in #111
Behind the scene
- ci: Create dependabot.yml by @xuwei-k in #116
- ci: Adds
sbt/setup-sbtby @xuwei-k in #169 - ci: Adds JDK 17 to the test matrix by @magnolia-k in #104
- ci: Adds JDK 11 to the test matrix by @xuwei-k in #101
- ci: Fixes GitHub action branch setting by @xuwei-k in #196
- deps: Update scala-library to 2.12.20 by @scala-steward in #164
- ci: Bump actions/checkout from 2 to 3 by @dependabot[bot] in #117
- ci: Bump actions/checkout from 3 to 4 by @dependabot[bot] in #151
- ci: Bump actions/setup-java from 3 to 4 by @dependabot[bot] in #154
- ci: Update sbt, scripted-plugin to 1.11.4 by @scala-steward in #192
- ci: Update sbt-ci-release to 1.11.2 by @scala-steward in #193
- ci: Update sbt-dynver to 5.1.1 by @scala-steward in #190
- docs: Readme by @eed3si9n in #99
- docs: Update README.md by @artemkorsakov in #115
New Contributors
- @magnolia-k made their first contribution in #104
- @ksen0byte made their first contribution in #111
- @artemkorsakov made their first contribution in #115
- @dependabot[bot] made their first contribution in #117
Full Changelog: v0.5.0...v0.6.0
0.5.0
Breaking changes:
- Note: Organization has moved from
com.eed3si9ntocom.github.sbtto 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: _*)