Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 1a39ba8

Browse files
committedJan 11, 2023
Show Kotlin 1.8 versions
1 parent abbf776 commit 1a39ba8

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed
 

‎.editorconfig

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,5 @@ indent_size=2
1111
[build.gradle.kts]
1212
indent_size=4
1313

14-
[*.{js,ts,tsx,less,html,yml}]
14+
[*.{js,ts,tsx,less,html,yml,json}]
1515
indent_size=2
+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionSha256Sum=f6b8596b10cce501591e92f229816aa4046424f3b24d771751b06779d58c8ec4
4-
distributionUrl=https\://services.gradle.org/distributions/gradle-7.5.1-bin.zip
3+
distributionSha256Sum=7ba68c54029790ab444b39d7e293d3236b2632631fb5f2e012bb28b4ff669e4b
4+
distributionUrl=https\://services.gradle.org/distributions/gradle-7.6-bin.zip
55
zipStoreBase=GRADLE_USER_HOME
66
zipStorePath=wrapper/dists

‎src/main/kotlin/link/kotlin/scripts/SiteGenerator.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ private class DefaultSiteGenerator(
5555
}
5656

5757
override fun generateKotlinVersionsJson() = runBlocking {
58-
val versions = kotlinVersionFetcher.getLatestVersions(listOf("1.6", "1.7"))
58+
val versions = kotlinVersionFetcher.getLatestVersions(listOf("1.7", "1.8"))
5959
writeFile("$base/app/versions.json", mapper.writeValueAsString(versions))
6060
}
6161

‎src/test/kotlin/link/kotlin/scripts/VersionFetcherManualTest.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@ import link.kotlin.scripts.utils.default
66
suspend fun main() {
77
val client = HttpClient.default()
88
val fetcher = KotlinVersionFetcher.default(client)
9-
val versions = fetcher.getLatestVersions(listOf("1.6", "1.7"))
9+
val versions = fetcher.getLatestVersions(listOf("1.7", "1.8"))
1010
println(versions)
1111
}

0 commit comments

Comments
 (0)
Please sign in to comment.