From 3fe84db24748d4c0baf2b79b38ef3afdb7c35eaf Mon Sep 17 00:00:00 2001 From: Him188 Date: Fri, 5 Feb 2021 15:51:14 +0800 Subject: [PATCH] Release v0.9.0 --- README.md | 17 +++++++++-------- buildSrc/src/main/kotlin/Versions.kt | 2 +- 2 files changed, 10 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index 2807814c..7f0e7764 100644 --- a/README.md +++ b/README.md @@ -10,12 +10,13 @@ This project is in alpha state. Dependency requirements: -| yamlkt | Kotlin | kotlinx.serialization | -|:------:|:-------:|:---------------------:| -| 0.3.3 | 1.3.70+ | 0.20.0 | -| 0.5.3 | 1.4.0 | 1.0.0-RC | -| 0.6.0 | 1.4.10 | 1.0.0-RC2 | -| 0.8.0 | 1.4.10 | 1.0.1 | +| yamlkt | Kotlin | kotlinx.serialization | +|:------:|:------:|:---------------------:| +| 0.3.3 | 1.3.70 | 0.20.0 | +| 0.5.3 | 1.4.0 | 1.0.0-RC | +| 0.6.0 | 1.4.10 | 1.0.0-RC2 | +| 0.8.0 | 1.4.10 | 1.0.1 | +| 0.9.0 | 1.4.30 | 1.1.0-RC | #### Gradle @@ -26,7 +27,7 @@ repositories { ``` ```kotlin -implementation("net.mamoe.yamlkt:yamlkt:0.8.0") +implementation("net.mamoe.yamlkt:yamlkt:0.9.0") ``` **If your project is multiplatform, you need only to add this dependency for commonMain.** @@ -46,7 +47,7 @@ Only JVM is available for Maven. net.mamoe.yamlkt yamlkt - 0.8.0 + 0.9.0 ``` diff --git a/buildSrc/src/main/kotlin/Versions.kt b/buildSrc/src/main/kotlin/Versions.kt index 7f8324f3..0d163e39 100644 --- a/buildSrc/src/main/kotlin/Versions.kt +++ b/buildSrc/src/main/kotlin/Versions.kt @@ -1,5 +1,5 @@ object Versions { - const val version = "0.8.0" + const val version = "0.9.0-dev-1" const val kotlin = "1.4.30" const val serialization = "1.1.0-RC"