summaryrefslogtreecommitdiff
path: root/buildSrc/src/main
diff options
context:
space:
mode:
authorFabian Mastenbroek <mail.fabianm@gmail.com>2020-03-17 14:56:21 +0100
committerFabian Mastenbroek <mail.fabianm@gmail.com>2020-03-25 10:48:58 +0100
commit43f1376a00342338f4d0affde5e1f2f540ab7e32 (patch)
tree48694c76f2f9b02e9efdfbecf06e6297ab9ecf86 /buildSrc/src/main
parent5ff443c799322836d532fffb3ff8f720806c32b6 (diff)
perf: Upgrade to kotlinx-coroutines 1.3.5 due to memory leak
This change upgrades the dependency on kotlinx-coroutines due a memory leak that was introduced in 1.3.2, causing simulations to run out of memory.
Diffstat (limited to 'buildSrc/src/main')
-rw-r--r--buildSrc/src/main/kotlin/library.kt2
1 files changed, 1 insertions, 1 deletions
diff --git a/buildSrc/src/main/kotlin/library.kt b/buildSrc/src/main/kotlin/library.kt
index 6333e351..3b05f3a4 100644
--- a/buildSrc/src/main/kotlin/library.kt
+++ b/buildSrc/src/main/kotlin/library.kt
@@ -45,5 +45,5 @@ object Library {
/**
* Kotlin coroutines support
*/
- val KOTLINX_COROUTINES = "1.3.4"
+ val KOTLINX_COROUTINES = "1.3.5"
}