mirror of
https://github.com/fankes/moshi.git
synced 2025-10-18 23:49:21 +08:00
Update changelog for 1.14.0
This commit is contained in:
@@ -1,6 +1,11 @@
|
||||
Change Log
|
||||
==========
|
||||
|
||||
## Version 1.14.0
|
||||
|
||||
* Upgrade: [Kotlin 1.7.0][kotlin_1_7_0].
|
||||
|
||||
|
||||
## Version 1.13.0
|
||||
|
||||
_2021-12-08_
|
||||
@@ -535,6 +540,7 @@ _2015-06-16_
|
||||
[kotlin_1_4_10]: https://github.com/JetBrains/kotlin/releases/tag/v1.4.10
|
||||
[kotlin_1_4_31]: https://github.com/JetBrains/kotlin/releases/tag/v1.4.31
|
||||
[kotlin_1_6_0]: https://github.com/JetBrains/kotlin/releases/tag/v1.6.0
|
||||
[kotlin_1_7_0]: https://github.com/JetBrains/kotlin/releases/tag/v1.7.0
|
||||
[ksp]: https://github.com/google/ksp
|
||||
[maven_provided]: https://maven.apache.org/guides/introduction/introduction-to-dependency-mechanism.html
|
||||
[moshi_kotlin_docs]: https://github.com/square/moshi/blob/master/README.md#kotlin
|
||||
|
14
README.md
14
README.md
@@ -1063,12 +1063,12 @@ The reflection adapter requires the following additional dependency:
|
||||
<dependency>
|
||||
<groupId>com.squareup.moshi</groupId>
|
||||
<artifactId>moshi-kotlin</artifactId>
|
||||
<version>1.12.0</version>
|
||||
<version>1.14.0</version>
|
||||
</dependency>
|
||||
```
|
||||
|
||||
```kotlin
|
||||
implementation("com.squareup.moshi:moshi-kotlin:1.13.0")
|
||||
implementation("com.squareup.moshi:moshi-kotlin:1.14.0")
|
||||
```
|
||||
|
||||
Note that the reflection adapter transitively depends on the `kotlin-reflect` library which is a
|
||||
@@ -1103,7 +1103,7 @@ plugins {
|
||||
}
|
||||
|
||||
dependencies {
|
||||
ksp("com.squareup.moshi:moshi-kotlin-codegen:1.13.0")
|
||||
ksp("com.squareup.moshi:moshi-kotlin-codegen:1.14.0")
|
||||
}
|
||||
|
||||
```
|
||||
@@ -1116,13 +1116,13 @@ dependencies {
|
||||
<dependency>
|
||||
<groupId>com.squareup.moshi</groupId>
|
||||
<artifactId>moshi-kotlin-codegen</artifactId>
|
||||
<version>1.12.0</version>
|
||||
<version>1.14.0</version>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
```
|
||||
|
||||
```kotlin
|
||||
kapt("com.squareup.moshi:moshi-kotlin-codegen:1.13.0")
|
||||
kapt("com.squareup.moshi:moshi-kotlin-codegen:1.14.0")
|
||||
```
|
||||
</details>
|
||||
|
||||
@@ -1146,12 +1146,12 @@ Download [the latest JAR][dl] or depend via Maven:
|
||||
<dependency>
|
||||
<groupId>com.squareup.moshi</groupId>
|
||||
<artifactId>moshi</artifactId>
|
||||
<version>1.13.0</version>
|
||||
<version>1.14.0</version>
|
||||
</dependency>
|
||||
```
|
||||
or Gradle:
|
||||
```kotlin
|
||||
implementation("com.squareup.moshi:moshi:1.13.0")
|
||||
implementation("com.squareup.moshi:moshi:1.14.0")
|
||||
```
|
||||
|
||||
Snapshots of the development version are available in [Sonatype's `snapshots` repository][snap].
|
||||
|
@@ -9,7 +9,7 @@ val baseline = configurations.create("baseline")
|
||||
val latest = configurations.create("latest")
|
||||
|
||||
dependencies {
|
||||
baseline("com.squareup.moshi:moshi:1.13.0") {
|
||||
baseline("com.squareup.moshi:moshi:1.14.0") {
|
||||
isTransitive = false
|
||||
isForce = true
|
||||
}
|
||||
|
Reference in New Issue
Block a user