Skip to content

Commit df89910

Browse files
ogolbergpakoito
authored andcommitted
Bump to Kotlin 1.3.31 (#1482)
* Bumpt to Kotlin 1.3.31 See https://youtrack.jetbrains.com/issue/KT-31664 * Try noStdlibLink = true to pass the build
1 parent 8f34d4f commit df89910

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

build.gradle

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ buildscript {
2828
javaVersion = JavaVersion.VERSION_1_7
2929
kotlinPoetVersion = '1.1.0'
3030
kotlinTestVersion = '3.3.1'
31-
kotlinVersion = '1.3.21'
31+
kotlinVersion = '1.3.31'
3232
kotlinxCollectionsImmutableVersion = '0.1'
3333
kotlinxCoroutinesVersion = '1.1.1'
3434
projectReactorVersion = '3.2.6.RELEASE'
@@ -117,6 +117,7 @@ subprojects { project ->
117117
suffix = "#L"
118118
}
119119

120+
noStdlibLink = true
120121
}
121122

122123
task codeCoverageReport(type: JacocoReport) {

modules/effects/arrow-effects-data/src/test/kotlin/arrow/effects/EffectsSuspendDSLTests.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -280,7 +280,7 @@ class EffectsSuspendDSLTests : UnitSpec() {
280280
suspend { 1 },
281281
suspend { 2 },
282282
suspend { 3 }
283-
).traverse(::effectIdentity)
283+
).traverse { it }
284284
}
285285
} shouldBe listOf(1, 2, 3)
286286
}

0 commit comments

Comments
 (0)