Skip to content
This repository has been archived by the owner on Feb 9, 2024. It is now read-only.

Commit

Permalink
Update to 1.6.10
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielRBaird authored Jan 14, 2022
2 parents d8cf5c2 + 1a2f5bc commit ccd5770
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 22 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
## Specs

- Supported on Native, JVM, and JS (legacy and IR) (feel free to contribute adding more targets)
- Kotlin 1.6.0
- Kotlin 1.6.10

## Gradle

Expand All @@ -18,7 +18,7 @@ kotlin {
sourceSets {
commonMain {
dependencies {
implementation "com.autodesk:coroutineworker:0.8.0"
implementation "com.autodesk:coroutineworker:0.8.1"
}
}
}
Expand Down
6 changes: 3 additions & 3 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@ import org.jetbrains.kotlin.gradle.plugin.mpp.KotlinNativeTarget
import org.jetbrains.kotlin.gradle.targets.js.KotlinJsTarget
import org.jetbrains.kotlin.konan.target.HostManager

val coroutinesVersion = "1.5.2"
val atomicfuVersion = "0.16.3"
val coroutinesVersion = "1.6.0"
val atomicfuVersion = "0.17.0"

plugins {
kotlin("multiplatform") version "1.6.0"
kotlin("multiplatform") version "1.6.10"
id("org.jetbrains.dokka") version "0.10.0"
id("maven-publish")
id("signing")
Expand Down
3 changes: 2 additions & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
VERSION=0.8.0
VERSION=0.8.1

kotlin.mpp.enableGranularSourceSetsMetadata=true
kotlin.mpp.enableCompatibilityMetadataVariant=true
kotlin.mpp.stability.nowarn=true

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -95,11 +95,9 @@ public actual class CoroutineWorker internal actual constructor() {
var completed = false
try {
repeatedlyCheckForCancellation(this.coroutineContext, cancelled) { completed }
// inside of a new CoroutineScope, so that child jobs are cancelled
// inside a new CoroutineScope, so that child jobs are cancelled
coroutineScope {
autoreleasepool {
block()
}
block()
}
} finally {
completed = true
Expand Down

0 comments on commit ccd5770

Please sign in to comment.