Skip to content

Commit

Permalink
Merge pull request #1836 from nils-trubkin/patch-1
Browse files Browse the repository at this point in the history
Update README.md dependency version 1.15.0 to 1.15.1
  • Loading branch information
JakeWharton committed Apr 15, 2024
2 parents 56d2158 + e151706 commit ec7c86d
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions README.md
Expand Up @@ -1063,12 +1063,12 @@ The reflection adapter requires the following additional dependency:
<dependency>
<groupId>com.squareup.moshi</groupId>
<artifactId>moshi-kotlin</artifactId>
<version>1.15.0</version>
<version>1.15.1</version>
</dependency>
```

```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
Expand Down Expand Up @@ -1103,7 +1103,7 @@ plugins {
}

dependencies {
ksp("com.squareup.moshi:moshi-kotlin-codegen:1.15.0")
ksp("com.squareup.moshi:moshi-kotlin-codegen:1.15.1")
}

```
Expand All @@ -1116,13 +1116,13 @@ dependencies {
<dependency>
<groupId>com.squareup.moshi</groupId>
<artifactId>moshi-kotlin-codegen</artifactId>
<version>1.15.0</version>
<version>1.15.1</version>
<scope>provided</scope>
</dependency>
```

```kotlin
kapt("com.squareup.moshi:moshi-kotlin-codegen:1.15.0")
kapt("com.squareup.moshi:moshi-kotlin-codegen:1.15.1")
```
</details>

Expand All @@ -1146,12 +1146,12 @@ Download [the latest JAR][dl] or depend via Maven:
<dependency>
<groupId>com.squareup.moshi</groupId>
<artifactId>moshi</artifactId>
<version>1.15.0</version>
<version>1.15.1</version>
</dependency>
```
or Gradle:
```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].
Expand Down

0 comments on commit ec7c86d

Please sign in to comment.