diff options
author | Simon Ogorodnik <Simon.Ogorodnik@jetbrains.com> | 2018-10-03 08:01:20 +0300 |
---|---|---|
committer | Simon Ogorodnik <Simon.Ogorodnik@jetbrains.com> | 2018-10-03 08:01:20 +0300 |
commit | 0370d016c95761b57f13b007cd8c2494601a1539 (patch) | |
tree | 3ad614b434a5b76b02c1edd182b54c8f5efe0dea /core/src/main/kotlin/Generation | |
parent | 7d4e133fa46b9ab358472398ae03cbefbf49d9e3 (diff) | |
download | dokka-0370d016c95761b57f13b007cd8c2494601a1539.tar.gz dokka-0370d016c95761b57f13b007cd8c2494601a1539.tar.bz2 dokka-0370d016c95761b57f13b007cd8c2494601a1539.zip |
Introduce per-pass sinceKotlin
Diffstat (limited to 'core/src/main/kotlin/Generation')
-rw-r--r-- | core/src/main/kotlin/Generation/configurationImpl.kt | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/core/src/main/kotlin/Generation/configurationImpl.kt b/core/src/main/kotlin/Generation/configurationImpl.kt index 2aa0e0d7..61f3f902 100644 --- a/core/src/main/kotlin/Generation/configurationImpl.kt +++ b/core/src/main/kotlin/Generation/configurationImpl.kt @@ -63,7 +63,8 @@ class PassConfigurationImpl ( override val suppressedFiles: List<String> = listOf(), override val collectInheritedExtensionsFromLibraries: Boolean = false, override val analysisPlatform: Platform = Platform.DEFAULT, - override val targets: List<String> = listOf() + override val targets: List<String> = listOf(), + override val sinceKotlin: String = "1.0" ): DokkaConfiguration.PassConfiguration { private val defaultLinks = run { val links = mutableListOf<DokkaConfiguration.ExternalDocumentationLink>() |