diff --git a/CHANGELOG.md b/CHANGELOG.md index cbe5cfb..7a97c3b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,7 @@ All notable changes to this project will be documented in this file. --- ## master +* Upgrade kotlin to 1.5.31 in JsPlugin ## 1.14.0 * Added support to capture objects and lists while running a test with LOCAL_THREAD mode diff --git a/buildSrc/src/main/kotlin/JsPlugin.kt b/buildSrc/src/main/kotlin/JsPlugin.kt index 39ec42a..6bde7a8 100644 --- a/buildSrc/src/main/kotlin/JsPlugin.kt +++ b/buildSrc/src/main/kotlin/JsPlugin.kt @@ -42,7 +42,7 @@ abstract class JsPlugin : Plugin { sourceSets.getByName("jsTest") { dependencies { - implementation("org.jetbrains.kotlin:kotlin-test-js:1.5.21") // FIXME to investigate how to use version catalog here as well + implementation("org.jetbrains.kotlin:kotlin-test-js:1.5.31") // FIXME to investigate how to use version catalog here as well } } }