aboutsummaryrefslogtreecommitdiff
path: root/integration-tests
diff options
context:
space:
mode:
authorIgnat Beresnev <ignat.beresnev@jetbrains.com>2023-09-01 16:29:50 +0200
committerGitHub <noreply@github.com>2023-09-01 16:29:50 +0200
commit83231c0781a50fdeb05ded348187ae48557a1a1f (patch)
treef06a5b9e78f5b4c468cb22fbe8303c6eb2e693be /integration-tests
parent02f30b142aa467d3a24cc52a1fe3f2fed7ea1e33 (diff)
downloaddokka-83231c0781a50fdeb05ded348187ae48557a1a1f.tar.gz
dokka-83231c0781a50fdeb05ded348187ae48557a1a1f.tar.bz2
dokka-83231c0781a50fdeb05ded348187ae48557a1a1f.zip
Update Dokka's references to 1.9.0 (#3154)
Diffstat (limited to 'integration-tests')
-rw-r--r--integration-tests/gradle/projects/it-basic/build.gradle.kts2
-rw-r--r--integration-tests/gradle/projects/it-configuration/build.gradle.kts2
-rw-r--r--integration-tests/gradle/src/integrationTest/kotlin/org/jetbrains/dokka/it/gradle/BasicGradleIntegrationTest.kt2
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 2528714d..4ec3b825 100644
--- a/integration-tests/gradle/projects/it-basic/build.gradle.kts
+++ b/integration-tests/gradle/projects/it-basic/build.gradle.kts
@@ -20,7 +20,7 @@ buildscript {
}
}
-version = "1.8.20-SNAPSHOT"
+version = "1.9.0-SNAPSHOT"
apply(from = "../template.root.gradle.kts")
diff --git a/integration-tests/gradle/projects/it-configuration/build.gradle.kts b/integration-tests/gradle/projects/it-configuration/build.gradle.kts
index 3b4a7658..02e99e9b 100644
--- a/integration-tests/gradle/projects/it-configuration/build.gradle.kts
+++ b/integration-tests/gradle/projects/it-configuration/build.gradle.kts
@@ -16,7 +16,7 @@ buildscript {
}
}
-version = "1.8.20-SNAPSHOT"
+version = "1.9.0-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 0256f593..f214710c 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
@@ -158,7 +158,7 @@ class BasicGradleIntegrationTest : AbstractGradleIntegrationTest() {
val indexFile = File(this, "index.html")
assertTrue(indexFile.isFile, "Missing index.html")
assertTrue(
- """<title>Basic Project 1.8.20-SNAPSHOT API </title>""" in indexFile.readText(),
+ """<title>Basic Project 1.9.0-SNAPSHOT API </title>""" in indexFile.readText(),
"Header with version number not present in index.html"
)