Skip to content

Commit f9f160a

Browse files
committed
Prepare 1.8.0 release
1 parent f17c83f commit f9f160a

File tree

2 files changed

+11
-5
lines changed

2 files changed

+11
-5
lines changed

CHANGELOG.md

+7-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,10 @@
1-
1.8.0-RC / 2024-13-10
1+
1.8.0 / 2025-01-06
2+
==================
3+
4+
This release contains all of the changes from 1.8.0-RC. Kotlin 2.1.0 is used as a default, while upcoming 2.1.10 is also supported.
5+
Also added small bugfixes, including speedup of ProtoWireType.from (#2879).
6+
7+
1.8.0-RC / 2024-12-10
28
==================
39

410
This is a release candidate for the next version. It is based on Kotlin 2.1.0 and includes a few new features, as well

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
[![GitHub license](https://img.shields.io/badge/license-Apache%20License%202.0-blue.svg?style=flat)](http://www.apache.org/licenses/LICENSE-2.0)
66
[![TeamCity build](https://img.shields.io/teamcity/http/teamcity.jetbrains.com/s/KotlinTools_KotlinxSerialization_Ko.svg)](https://teamcity.jetbrains.com/viewType.html?buildTypeId=KotlinTools_KotlinxSerialization_Ko&guest=1)
77
[![Kotlin](https://img.shields.io/badge/kotlin-2.1.0-blue.svg?logo=kotlin)](http://kotlinlang.org)
8-
[![Maven Central](https://img.shields.io/maven-central/v/org.jetbrains.kotlinx/kotlinx-serialization-core/1.8.0-RC)](https://central.sonatype.com/artifact/org.jetbrains.kotlinx/kotlinx-serialization-core/1.8.0-RC)
8+
[![Maven Central](https://img.shields.io/maven-central/v/org.jetbrains.kotlinx/kotlinx-serialization-core/1.8.0)](https://central.sonatype.com/artifact/org.jetbrains.kotlinx/kotlinx-serialization-core/1.8.0)
99
[![KDoc link](https://img.shields.io/badge/API_reference-KDoc-blue)](https://kotlinlang.org/api/kotlinx.serialization/)
1010
[![Slack channel](https://img.shields.io/badge/chat-slack-blue.svg?logo=slack)](https://kotlinlang.slack.com/messages/serialization/)
1111

@@ -164,7 +164,7 @@ repositories {
164164
}
165165

166166
dependencies {
167-
implementation("org.jetbrains.kotlinx:kotlinx-serialization-json:1.8.0-RC")
167+
implementation("org.jetbrains.kotlinx:kotlinx-serialization-json:1.8.0")
168168
}
169169
```
170170

@@ -176,7 +176,7 @@ repositories {
176176
}
177177
178178
dependencies {
179-
implementation "org.jetbrains.kotlinx:kotlinx-serialization-json:1.8.0-RC"
179+
implementation "org.jetbrains.kotlinx:kotlinx-serialization-json:1.8.0"
180180
}
181181
```
182182

@@ -267,7 +267,7 @@ Ensure the proper version of Kotlin and serialization version:
267267
```xml
268268
<properties>
269269
<kotlin.version>2.1.0</kotlin.version>
270-
<serialization.version>1.8.0-RC</serialization.version>
270+
<serialization.version>1.8.0</serialization.version>
271271
</properties>
272272
```
273273

0 commit comments

Comments
 (0)