2.6
Migration guide
This version migrates Dokka to version 2.0.0. Some steps are required:
- To gadle.properties add (example):
org.jetbrains.dokka.experimental.gradle.pluginMode=V2Enabled org.jetbrains.dokka.experimental.gradle.pluginMode.noWarn=true
- Apply
org.jetbrains.dokka
in the main build.gradle.kts file (example):// This plugin is used to generate Dokka documentation. alias(libs.plugins.kotlin.dokka) apply false // This applies Nordic look & feel to generated Dokka documentation. alias(libs.plugins.nordic.dokka) apply true
- Configure dokka for root project using Dokka extension (example):
dokka { ... }
- Set up Java version to 21 in GitHub workflows (example):
- uses: actions/setup-java@v4 with: distribution: 'jetbrains' java-version: '21'
What's Changed
- Migration to Gradle 8.11 and Dokka 2.0 by @philips77 in #281
- Dependency clean up by @philips77 in #284
- Update kotlin 1.9.0 to v1.10.0 by @renovate in #283
- Update kotlin 1.10.0 to v1.10.1 by @renovate in #285
- Update all dependencies - autoclosed by @renovate in #282
- Update all dependencies by @renovate in #286
- Migrate renovate config by @renovate in #287
Full Changelog: 2.5-5...2.6