diff options
author | Ignat Beresnev <ignat.beresnev@jetbrains.com> | 2022-07-13 12:13:41 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-13 12:13:41 +0200 |
commit | 7cbdcc9ae62d03af5efbab8f5ce2d815f456513a (patch) | |
tree | 2e2a90b5a24a4301a611236cdbea31d56fd6296b /integration-tests/gradle | |
parent | 0cdb6d4de754ef5381de09be55ebdafa6868caca (diff) | |
download | dokka-7cbdcc9ae62d03af5efbab8f5ce2d815f456513a.tar.gz dokka-7cbdcc9ae62d03af5efbab8f5ce2d815f456513a.tar.bz2 dokka-7cbdcc9ae62d03af5efbab8f5ce2d815f456513a.zip |
Update references and documentation to Dokka 1.7.10 (#2566)
Diffstat (limited to 'integration-tests/gradle')
3 files changed, 3 insertions, 3 deletions
diff --git a/integration-tests/gradle/projects/it-basic/build.gradle.kts b/integration-tests/gradle/projects/it-basic/build.gradle.kts index 0aacbccd..ad4d48ad 100644 --- a/integration-tests/gradle/projects/it-basic/build.gradle.kts +++ b/integration-tests/gradle/projects/it-basic/build.gradle.kts @@ -16,7 +16,7 @@ buildscript { } } -version = "1.7.0-SNAPSHOT" +version = "1.7.10-SNAPSHOT" apply(from = "../template.root.gradle.kts") diff --git a/integration-tests/gradle/src/integrationTest/kotlin/org/jetbrains/dokka/it/gradle/BasicGradleIntegrationTest.kt b/integration-tests/gradle/src/integrationTest/kotlin/org/jetbrains/dokka/it/gradle/BasicGradleIntegrationTest.kt index 738b047f..2c063d1e 100644 --- a/integration-tests/gradle/src/integrationTest/kotlin/org/jetbrains/dokka/it/gradle/BasicGradleIntegrationTest.kt +++ b/integration-tests/gradle/src/integrationTest/kotlin/org/jetbrains/dokka/it/gradle/BasicGradleIntegrationTest.kt @@ -156,7 +156,7 @@ class BasicGradleIntegrationTest(override val versions: BuildVersions) : Abstrac val indexFile = File(this, "index.html") assertTrue(indexFile.isFile, "Missing index.html") assertTrue( - """<title>Basic Project 1.7.0-SNAPSHOT API </title>""" in indexFile.readText(), + """<title>Basic Project 1.7.10-SNAPSHOT API </title>""" in indexFile.readText(), "Header with version number not present in index.html" ) diff --git a/integration-tests/gradle/src/integrationTest/kotlin/org/jetbrains/dokka/it/gradle/TestedVersions.kt b/integration-tests/gradle/src/integrationTest/kotlin/org/jetbrains/dokka/it/gradle/TestedVersions.kt index 0694cdd1..f8ec453e 100644 --- a/integration-tests/gradle/src/integrationTest/kotlin/org/jetbrains/dokka/it/gradle/TestedVersions.kt +++ b/integration-tests/gradle/src/integrationTest/kotlin/org/jetbrains/dokka/it/gradle/TestedVersions.kt @@ -32,6 +32,6 @@ internal object TestedVersions { "1.6.0" to "-Preact_version=17.0.2-pre.280-kotlin-1.6.0", "1.5.31" to "-Preact_version=17.0.2-pre.265-kotlin-1.5.31", "1.6.21" to "-Preact_version=18.0.0-pre.332-kotlin-1.6.21", - "1.7.10" to "-Preact_version=18.2.0-pre.351" // TODO update to confirmed 1.7.10 + "1.7.10" to "-Preact_version=18.2.0-pre.354" ) } |