From 98459dd8aba578b13be52e168a9a515a874536f9 Mon Sep 17 00:00:00 2001 From: Jesse Wilson Date: Fri, 9 Nov 2018 09:41:10 +1000 Subject: [PATCH] Reference 1.8 in the README --- README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 635b287..7ad05b2 100644 --- a/README.md +++ b/README.md @@ -500,12 +500,12 @@ The reflection adapter requires the following additional dependency: com.squareup.moshi moshi-kotlin - 1.7.0 + 1.8.0 ``` ```kotlin -implementation("com.squareup.moshi:moshi-kotlin:1.7.0") +implementation("com.squareup.moshi:moshi-kotlin:1.8.0") ``` Note that the reflection adapter transitively depends on the `kotlin-reflect` library which is a @@ -535,13 +535,13 @@ add the following to your build to enable the annotation processor: com.squareup.moshi moshi-kotlin-codegen - 1.7.0 + 1.8.0 provided ``` ```kotlin -kapt("com.squareup.moshi:moshi-kotlin-codegen:1.7.0") +kapt("com.squareup.moshi:moshi-kotlin-codegen:1.8.0") ``` You must also have the `kotlin-stdlib` dependency on the classpath during compilation in order for @@ -567,12 +567,12 @@ Download [the latest JAR][dl] or depend via Maven: com.squareup.moshi moshi - 1.7.0 + 1.8.0 ``` or Gradle: ```kotlin -implementation("com.squareup.moshi:moshi:1.7.0") +implementation("com.squareup.moshi:moshi:1.8.0") ``` Snapshots of the development version are available in [Sonatype's `snapshots` repository][snap].