From c9f8c56efced31be808387ac7b7bed9ba1b8a68f Mon Sep 17 00:00:00 2001 From: Jesse Wilson Date: Tue, 6 Sep 2022 14:36:42 -0400 Subject: [PATCH] Update changelog for 1.14.0 --- CHANGELOG.md | 6 ++++++ README.md | 14 +++++++------- moshi/japicmp/build.gradle.kts | 2 +- 3 files changed, 14 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f60800e..6ac94f8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,11 @@ Change Log ========== +## Version 1.14.0 + + * Upgrade: [Kotlin 1.7.0][kotlin_1_7_0]. + + ## Version 1.13.0 _2021-12-08_ @@ -535,6 +540,7 @@ _2015-06-16_ [kotlin_1_4_10]: https://github.com/JetBrains/kotlin/releases/tag/v1.4.10 [kotlin_1_4_31]: https://github.com/JetBrains/kotlin/releases/tag/v1.4.31 [kotlin_1_6_0]: https://github.com/JetBrains/kotlin/releases/tag/v1.6.0 + [kotlin_1_7_0]: https://github.com/JetBrains/kotlin/releases/tag/v1.7.0 [ksp]: https://github.com/google/ksp [maven_provided]: https://maven.apache.org/guides/introduction/introduction-to-dependency-mechanism.html [moshi_kotlin_docs]: https://github.com/square/moshi/blob/master/README.md#kotlin diff --git a/README.md b/README.md index 5b2893a..98989d9 100644 --- a/README.md +++ b/README.md @@ -1063,12 +1063,12 @@ The reflection adapter requires the following additional dependency: com.squareup.moshi moshi-kotlin - 1.12.0 + 1.14.0 ``` ```kotlin -implementation("com.squareup.moshi:moshi-kotlin:1.13.0") +implementation("com.squareup.moshi:moshi-kotlin:1.14.0") ``` Note that the reflection adapter transitively depends on the `kotlin-reflect` library which is a @@ -1103,7 +1103,7 @@ plugins { } dependencies { - ksp("com.squareup.moshi:moshi-kotlin-codegen:1.13.0") + ksp("com.squareup.moshi:moshi-kotlin-codegen:1.14.0") } ``` @@ -1116,13 +1116,13 @@ dependencies { com.squareup.moshi moshi-kotlin-codegen - 1.12.0 + 1.14.0 provided ``` ```kotlin -kapt("com.squareup.moshi:moshi-kotlin-codegen:1.13.0") +kapt("com.squareup.moshi:moshi-kotlin-codegen:1.14.0") ``` @@ -1146,12 +1146,12 @@ Download [the latest JAR][dl] or depend via Maven: com.squareup.moshi moshi - 1.13.0 + 1.14.0 ``` or Gradle: ```kotlin -implementation("com.squareup.moshi:moshi:1.13.0") +implementation("com.squareup.moshi:moshi:1.14.0") ``` Snapshots of the development version are available in [Sonatype's `snapshots` repository][snap]. diff --git a/moshi/japicmp/build.gradle.kts b/moshi/japicmp/build.gradle.kts index 41a3d3e..2f4b2f3 100644 --- a/moshi/japicmp/build.gradle.kts +++ b/moshi/japicmp/build.gradle.kts @@ -9,7 +9,7 @@ val baseline = configurations.create("baseline") val latest = configurations.create("latest") dependencies { - baseline("com.squareup.moshi:moshi:1.13.0") { + baseline("com.squareup.moshi:moshi:1.14.0") { isTransitive = false isForce = true }