Prepare version 1.9.3

(cherry picked from commit c7d0766c03842a411d52d691de343dd4f874f1d7)
This commit is contained in:
Jake Wharton
2020-06-11 15:38:01 -04:00
parent d07040ce17
commit 7829f9a65b
2 changed files with 16 additions and 6 deletions

View File

@@ -532,12 +532,12 @@ The reflection adapter requires the following additional dependency:
<dependency>
<groupId>com.squareup.moshi</groupId>
<artifactId>moshi-kotlin</artifactId>
<version>1.9.2</version>
<version>1.9.3</version>
</dependency>
```
```kotlin
implementation("com.squareup.moshi:moshi-kotlin:1.9.2")
implementation("com.squareup.moshi:moshi-kotlin:1.9.3")
```
Note that the reflection adapter transitively depends on the `kotlin-reflect` library which is a
@@ -567,13 +567,13 @@ add the following to your build to enable the annotation processor:
<dependency>
<groupId>com.squareup.moshi</groupId>
<artifactId>moshi-kotlin-codegen</artifactId>
<version>1.9.2</version>
<version>1.9.3</version>
<scope>provided</scope>
</dependency>
```
```kotlin
kapt("com.squareup.moshi:moshi-kotlin-codegen:1.9.2")
kapt("com.squareup.moshi:moshi-kotlin-codegen:1.9.3")
```
You must also have the `kotlin-stdlib` dependency on the classpath during compilation in order for
@@ -599,12 +599,12 @@ Download [the latest JAR][dl] or depend via Maven:
<dependency>
<groupId>com.squareup.moshi</groupId>
<artifactId>moshi</artifactId>
<version>1.9.2</version>
<version>1.9.3</version>
</dependency>
```
or Gradle:
```kotlin
implementation("com.squareup.moshi:moshi:1.9.2")
implementation("com.squareup.moshi:moshi:1.9.3")
```
Snapshots of the development version are available in [Sonatype's `snapshots` repository][snap].