Skip to content

Commit

Permalink
Version 1.15.2 change log (#1914)
Browse files Browse the repository at this point in the history
  • Loading branch information
JakeWharton authored Dec 5, 2024
1 parent 7aea91d commit 71d5c84
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 5 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
Change Log
==========

## Version 1.15.2

_2024-12-05_

* Do not generate conditional shrinker rules (i.e., `-if`) when the rule is already predicated on the presence of the target type (as `-keepnames` and `-keepclassmembers` are).
This will improve shrinker performance for projects with hundreds of model types, as conditional rules are more expensive to evaluate.


## Version 1.15.1

_2024-01-30_
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
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.1</version>
<version>1.15.2</version>
</dependency>
```

```kotlin
implementation("com.squareup.moshi:moshi-kotlin:1.15.1")
implementation("com.squareup.moshi:moshi-kotlin:1.15.2")
```

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.1")
ksp("com.squareup.moshi:moshi-kotlin-codegen:1.15.2")
}

```
Expand All @@ -1129,12 +1129,12 @@ Download [the latest JAR][dl] or depend via Maven:
<dependency>
<groupId>com.squareup.moshi</groupId>
<artifactId>moshi</artifactId>
<version>1.15.1</version>
<version>1.15.2</version>
</dependency>
```
or Gradle:
```kotlin
implementation("com.squareup.moshi:moshi:1.15.1")
implementation("com.squareup.moshi:moshi:1.15.2")
```

Snapshots of the development version are available in [Sonatype's `snapshots` repository][snap].
Expand Down

0 comments on commit 71d5c84

Please sign in to comment.