Update README.md dependency version 1.15.0 to 1.15.1

This commit is contained in:
Nils Trubkin
2024-04-15 20:55:22 +02:00
committed by GitHub
parent 56d2158882
commit e151706aa0

View File

@@ -1063,12 +1063,12 @@ The reflection adapter requires the following additional dependency:
<dependency> <dependency>
<groupId>com.squareup.moshi</groupId> <groupId>com.squareup.moshi</groupId>
<artifactId>moshi-kotlin</artifactId> <artifactId>moshi-kotlin</artifactId>
<version>1.15.0</version> <version>1.15.1</version>
</dependency> </dependency>
``` ```
```kotlin ```kotlin
implementation("com.squareup.moshi:moshi-kotlin:1.15.0") implementation("com.squareup.moshi:moshi-kotlin:1.15.1")
``` ```
Note that the reflection adapter transitively depends on the `kotlin-reflect` library which is a Note that the reflection adapter transitively depends on the `kotlin-reflect` library which is a
@@ -1103,7 +1103,7 @@ plugins {
} }
dependencies { dependencies {
ksp("com.squareup.moshi:moshi-kotlin-codegen:1.15.0") ksp("com.squareup.moshi:moshi-kotlin-codegen:1.15.1")
} }
``` ```
@@ -1116,13 +1116,13 @@ dependencies {
<dependency> <dependency>
<groupId>com.squareup.moshi</groupId> <groupId>com.squareup.moshi</groupId>
<artifactId>moshi-kotlin-codegen</artifactId> <artifactId>moshi-kotlin-codegen</artifactId>
<version>1.15.0</version> <version>1.15.1</version>
<scope>provided</scope> <scope>provided</scope>
</dependency> </dependency>
``` ```
```kotlin ```kotlin
kapt("com.squareup.moshi:moshi-kotlin-codegen:1.15.0") kapt("com.squareup.moshi:moshi-kotlin-codegen:1.15.1")
``` ```
</details> </details>
@@ -1146,12 +1146,12 @@ Download [the latest JAR][dl] or depend via Maven:
<dependency> <dependency>
<groupId>com.squareup.moshi</groupId> <groupId>com.squareup.moshi</groupId>
<artifactId>moshi</artifactId> <artifactId>moshi</artifactId>
<version>1.15.0</version> <version>1.15.1</version>
</dependency> </dependency>
``` ```
or Gradle: or Gradle:
```kotlin ```kotlin
implementation("com.squareup.moshi:moshi:1.15.0") implementation("com.squareup.moshi:moshi:1.15.1")
``` ```
Snapshots of the development version are available in [Sonatype's `snapshots` repository][snap]. Snapshots of the development version are available in [Sonatype's `snapshots` repository][snap].