Skip to content

Commit b6e9f4b

Browse files
committed
Merge remote-tracking branch 'origin/master' into dev
2 parents acb0988 + 4a7ada8 commit b6e9f4b

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ kotlinx-serialization-json has an API for manipulating raw Json values: function
1919
In this release, there is a new addition to this API: `JsonUnquotedLiteral` constructor function.
2020
It allows to produce a string that is not quoted in the Json output. This function has a lot of valuable
2121
applications: from writing unsigned or large numbers to embedding whole Json documents without the need for re-parsing.
22+
For an example, read the [Encoding literal Json content docs](https://github.com/Kotlin/kotlinx.serialization/blob/v1.5.0-RC/docs/json.md#encoding-literal-json-content-experimental).
2223
This huge feature was contributed to us by [aSemy](https://github.com/aSemy): [#2041](https://github.com/Kotlin/kotlinx.serialization/pull/2041).
2324

2425
### Stabilization of serializer(java.lang.Type) function family

core/commonMain/src/kotlinx/serialization/Annotations.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ public annotation class Required
162162

163163
/**
164164
* Marks this property invisible for the whole serialization process, including [serial descriptors][SerialDescriptor].
165-
* Transient properties should have default values.
165+
* Transient properties must have default values.
166166
*/
167167
@Target(AnnotationTarget.PROPERTY)
168168
// @Retention(AnnotationRetention.RUNTIME) still runtime, but KT-41082

0 commit comments

Comments
 (0)