File tree Expand file tree Collapse file tree 3 files changed +21
-5
lines changed Expand file tree Collapse file tree 3 files changed +21
-5
lines changed Original file line number Diff line number Diff line change
1
+ 1.0.1 / 2020-10-28
2
+ ==================
3
+
4
+ This patch release contains several feature improvements as well as bugfixes and performance improvements.
5
+
6
+ ### Features
7
+ * Add object-based serialization and deserialization of polymorphic types for ` dynamic ` conversions on JS platform (#1122 )
8
+ * Add support for object polymorphism in HOCON decoder (#1136 )
9
+ * Add support of decoding map in the root of HOCON config (#1106 )
10
+
11
+ ### Bugfixes
12
+ * Properly cache generated serializers in PluginGeneratedSerialDescriptor (#1159 )
13
+ * Add Pair and Triple to serializer resolving from Java type token (#1160 )
14
+ * Fix deserialization of half-precision, float and double types in CBOR (#1112 )
15
+ * Fix ByteString annotation detection when ByteArray is nullable (#1139 )
16
+
1
17
1.0.0 / 2020-10-08
2
18
==================
3
19
Original file line number Diff line number Diff line change 3
3
[ ![ official JetBrains project] ( https://jb.gg/badges/official.svg )] ( https://confluence.jetbrains.com/display/ALL/JetBrains+on+GitHub )
4
4
[ ![ GitHub license] ( https://img.shields.io/badge/license-Apache%20License%202.0-blue.svg?style=flat )] ( http://www.apache.org/licenses/LICENSE-2.0 )
5
5
[ ![ 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 )
6
- [ ![ Download] ( https://api.bintray.com/packages/kotlin/kotlinx/kotlinx.serialization.runtime/images/download.svg?version=1.0.0 ) ] ( https://bintray.com/kotlin/kotlinx/kotlinx.serialization.runtime/1.0.0 )
6
+ [ ![ Download] ( https://api.bintray.com/packages/kotlin/kotlinx/kotlinx.serialization.runtime/images/download.svg?version=1.0.1 ) ] ( https://bintray.com/kotlin/kotlinx/kotlinx.serialization.runtime/1.0.1 )
7
7
8
8
Kotlin serialization consists of a compiler plugin, that generates visitor code for serializable classes,
9
9
runtime library with core serialization API and support libraries with various serialization formats.
@@ -148,7 +148,7 @@ repositories {
148
148
}
149
149
150
150
dependencies {
151
- implementation(" org.jetbrains.kotlinx:kotlinx-serialization-json:1.0.0 " )
151
+ implementation(" org.jetbrains.kotlinx:kotlinx-serialization-json:1.0.1 " )
152
152
}
153
153
```
154
154
@@ -161,7 +161,7 @@ repositories {
161
161
}
162
162
163
163
dependencies {
164
- implementation "org.jetbrains.kotlinx:kotlinx-serialization-json:1.0.0 "
164
+ implementation "org.jetbrains.kotlinx:kotlinx-serialization-json:1.0.1 "
165
165
}
166
166
```
167
167
@@ -217,7 +217,7 @@ Ensure the proper version of Kotlin and serialization version:
217
217
``` xml
218
218
<properties >
219
219
<kotlin .version>1.4.10</kotlin .version>
220
- <serialization .version>1.0.0 </serialization .version>
220
+ <serialization .version>1.0.1 </serialization .version>
221
221
</properties >
222
222
```
223
223
Original file line number Diff line number Diff line change 3
3
#
4
4
5
5
mainKotlinVersion =1.4.10
6
- mainLibVersion =1.0.0
6
+ mainLibVersion =1.0.1-SNAPSHOT
7
7
8
8
kotlin.code.style =official
9
9
kotlin.js.compiler =both
You can’t perform that action at this time.
0 commit comments