summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLeonid Startsev <sandwwraith@gmail.com>2024-02-16 15:57:14 +0100
committerLeonid Startsev <sandwwraith@gmail.com>2024-02-16 15:57:14 +0100
commit5d348255b0f825de61dcc74a3b462dd5d9ca1223 (patch)
treebf86bc149a72ddef6c5bcf9dea9537d5d2506c0e
parent119d3761bed68758e7ffa27893432e81ac48fad2 (diff)
downloadkotlinx.serialization-upstream-1.6.3-release.tar.gz
fixup! Prepare 1.6.3 release, update Kotlin to 1.9.22upstream-1.6.3-release
-rw-r--r--CHANGELOG.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 62de5dc1..22d392c3 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -7,8 +7,8 @@ This release provides a couple of new features and uses Kotlin 1.9.22 as default
Class discriminator provides information for serializing and deserializing [polymorphic class hierarchies](docs/polymorphism.md#sealed-classes).
In case you want to encode more or less information for various third party APIs about types in the output, it is possible to control
-addition of the class discriminator with the [JsonBuilder.classDiscriminatorMode] property.
-For example, [ClassDiscriminatorMode.NONE] does not add class discriminator at all, in case the receiving party is not interested in Kotlin types.
+addition of the class discriminator with the `JsonBuilder.classDiscriminatorMode` property.
+For example, `ClassDiscriminatorMode.NONE` does not add class discriminator at all, in case the receiving party is not interested in Kotlin types.
You can learn more about this feature in the documentation and corresponding [PR](https://github.com/Kotlin/kotlinx.serialization/pull/2532).
### Other features