You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -386,10 +386,10 @@ or both formats at the same time:
386
386
```kotlin
387
387
plugins {
388
388
// Generates HTML documentation
389
-
id("org.jetbrains.dokka") version "2.0.0-Beta"
389
+
id("org.jetbrains.dokka") version "2.0.0"
390
390
391
391
// Generates Javadoc documentation
392
-
id("org.jetbrains.dokka-javadoc") version "2.0.0-Beta"
392
+
id("org.jetbrains.dokka-javadoc") version "2.0.0"
393
393
394
394
// Keeping both plugin IDs generates both formats
395
395
}
@@ -412,7 +412,7 @@ Here's a list of the plugin `id` and Gradle task that correspond to each format:
412
412
413
413
### Address deprecations and removals
414
414
415
-
* **Output format support:** Dokka 2.0.0-Beta only supports HTML and Javadoc output. Experimental formats like Markdown and Jekyll are no longer supported.
415
+
* **Output format support:** Dokka 2.0.0 only supports HTML and Javadoc output. Experimental formats like Markdown and Jekyll are no longer supported.
416
416
* **Collector task:** `DokkaCollectorTask` has been removed. Now, you need to generate the documentation separately for
417
417
each subproject and then [aggregate the documentation](#update-documentation-aggregation-in-multi-module-projects) if necessary.
Copy file name to clipboardexpand all lines: dokka-subprojects/analysis-kotlin-symbols/README.md
+2-2
Original file line number
Diff line number
Diff line change
@@ -24,7 +24,7 @@ To build it with an override version of Analysis API, the property
24
24
25
25
### Entry point
26
26
27
-
The main entry point is `DefaultSymbolToDocumentableTranslator` (this is an extension for [the extension point](https://kotlin.github.io/dokka/1.9.20/developer_guide/architecture/extension_points/core_extensions/#sourcetodocumentabletranslator) ), that is used by the Dokka core to build Documentable model by a source set.
27
+
The main entry point is `DefaultSymbolToDocumentableTranslator` (this is an extension for [the extension point](https://kotlin.github.io/dokka/2.0.0/developer_guide/architecture/extension_points/core_extensions/#sourcetodocumentabletranslator) ), that is used by the Dokka core to build Documentable model by a source set.
28
28
29
29
Across running Dokka we keep `StandaloneAnalysisAPISession` and `KtSourceModule` instances from Analysis API into `KotlinAnalysis`.
30
30
`KotlinAnalysis` is used in `DefaultSymbolToDocumentableTranslator` and other services that need an additional analysis.
@@ -51,4 +51,4 @@ By default, we run unit tests on TeamCity against the latest Analysis API by a s
51
51
- You can use the `gradle :publishToMavenLocal` task to publish Dokka locally.
52
52
- To build Dokka without running testing, using the `gradle assemble` task is recommended since the tests are time-consuming.
53
53
54
-
See the detailed guide [here](https://kotlin.github.io/dokka/1.9.20/developer_guide/workflow/).
54
+
See the detailed guide [here](https://kotlin.github.io/dokka/2.0.0/developer_guide/workflow/).
0 commit comments