Skip to content

Commit 816e773

Browse files
authored
Merge pull request #5 from peterfigure/upgrade_to_koxsrc2
upgrade to KotlinX 1.0.0-RC2 and force outputVariant
2 parents b840de7 + 4347072 commit 816e773

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ open classes should be avoided.
1818
implementation("de.brudaswen.kotlinx.serialization:kotlinx-serialization-csv:1.0.0")
1919

2020
// Kotlin Serialization is added automatically, but can be added to force a specific version
21-
implementation("org.jetbrains.kotlinx:kotlinx-serialization-runtime:1.0.0-RC")
21+
implementation("org.jetbrains.kotlinx:kotlinx-serialization-core:1.0.0-RC2")
2222
```
2323

2424
## Usage
@@ -100,7 +100,7 @@ CSV serialization and parsing options can be changed by providing a custom `CsvC
100100

101101
| Dependency | Versions |
102102
|--- |--- |
103-
| *Kotlin Serialization* | 1.0.0-RC |
103+
| *Kotlin Serialization* | 1.0.0-RC2 |
104104

105105
## License
106106

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ plugins {
55
id("io.codearte.nexus-staging") version "0.22.0"
66
}
77

8-
val serializationVersion = "1.0.0-RC"
8+
val serializationVersion = "1.0.0-RC2"
99

1010
allprojects {
1111
group = "de.brudaswen.kotlinx.serialization"

library/build.gradle.kts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,9 @@ dependencies {
2727

2828
java {
2929
withSourcesJar()
30+
31+
sourceCompatibility = JavaVersion.VERSION_1_8
32+
targetCompatibility = JavaVersion.VERSION_1_8
3033
}
3134

3235
tasks.withType<org.jetbrains.kotlin.gradle.tasks.KotlinCompile> {

0 commit comments

Comments
 (0)