File tree 9 files changed +12
-21
lines changed
9 files changed +12
-21
lines changed Original file line number Diff line number Diff line change 4
4
[ ![ JetBrains official project] ( https://jb.gg/badges/official.svg )] ( https://confluence.jetbrains.com/display/ALL/JetBrains+on+GitHub )
5
5
[ ![ GitHub license] ( https://img.shields.io/badge/license-Apache%20License%202.0-blue.svg?style=flat )] ( https://www.apache.org/licenses/LICENSE-2.0 )
6
6
[ ![ Download] ( https://img.shields.io/maven-central/v/org.jetbrains.kotlinx/kotlinx-coroutines-core/1.6.4 )] ( https://search.maven.org/artifact/org.jetbrains.kotlinx/kotlinx-coroutines-core/1.6.4/pom )
7
- [ ![ Kotlin] ( https://img.shields.io/badge/kotlin-1.6.21 -blue.svg?logo=kotlin )] ( http://kotlinlang.org )
7
+ [ ![ Kotlin] ( https://img.shields.io/badge/kotlin-1.7.10 -blue.svg?logo=kotlin )] ( http://kotlinlang.org )
8
8
[ ![ Slack channel] ( https://img.shields.io/badge/chat-slack-green.svg?logo=slack )] ( https://kotlinlang.slack.com/messages/coroutines/ )
9
9
10
10
Library support for Kotlin coroutines with [ multiplatform] ( #multiplatform ) support.
11
- This is a companion version for the Kotlin ` 1.6.21 ` release.
11
+ This is a companion version for the Kotlin ` 1.7.10 ` release.
12
12
13
13
``` kotlin
14
14
suspend fun main () = coroutineScope {
@@ -92,7 +92,7 @@ And make sure that you use the latest Kotlin version:
92
92
93
93
``` xml
94
94
<properties >
95
- <kotlin .version>1.6.21 </kotlin .version>
95
+ <kotlin .version>1.7.10 </kotlin .version>
96
96
</properties >
97
97
```
98
98
@@ -111,10 +111,10 @@ And make sure that you use the latest Kotlin version:
111
111
``` kotlin
112
112
plugins {
113
113
// For build.gradle.kts (Kotlin DSL)
114
- kotlin(" jvm" ) version " 1.6.21 "
114
+ kotlin(" jvm" ) version " 1.7.10 "
115
115
116
116
// For build.gradle (Groovy DSL)
117
- id " org.jetbrains.kotlin.jvm" version " 1.6.21 "
117
+ id " org.jetbrains.kotlin.jvm" version " 1.7.10 "
118
118
}
119
119
```
120
120
Original file line number Diff line number Diff line change @@ -58,6 +58,7 @@ buildscript {
58
58
classpath " org.jetbrains.kotlinx:binary-compatibility-validator:$binary_compatibility_validator_version "
59
59
classpath " ru.vyarus:gradle-animalsniffer-plugin:1.5.4" // Android API check
60
60
classpath " org.jetbrains.kotlinx:kover:$kover_version "
61
+ classpath " org.jetbrains.kotlin:atomicfu:$kotlin_version "
61
62
62
63
// JMH plugins
63
64
classpath " gradle.plugin.com.github.johnrengelman:shadow:7.1.2"
Original file line number Diff line number Diff line change 5
5
# Kotlin
6
6
version =1.6.4-SNAPSHOT
7
7
group =org.jetbrains.kotlinx
8
- kotlin_version =1.6.21
8
+ kotlin_version =1.7.10
9
9
10
10
# Dependencies
11
11
junit_version =4.12
12
12
junit5_version =5.7.0
13
- atomicfu_version =0.17.3
13
+ atomicfu_version =0.18.2
14
14
knit_version =0.4.0
15
15
html_version =0.7.2
16
16
lincheck_version =2.14
Original file line number Diff line number Diff line change 2
2
* Copyright 2016-2021 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license.
3
3
*/
4
4
5
- import org.jetbrains.kotlin.gradle.plugin.KotlinPlatformType
6
-
7
5
plugins {
8
- id " org.jetbrains.kotlin.jvm"
6
+ id " org.jetbrains.kotlin.jvm" version " $k otlin_version "
9
7
}
10
8
11
9
repositories {
Original file line number Diff line number Diff line change 1
- kotlin_version =1.6.21
1
+ kotlin_version =1.7.10
2
2
coroutines_version =1.6.4-SNAPSHOT
3
3
4
4
kotlin.code.style =official
Original file line number Diff line number Diff line change 1
1
pluginManagement {
2
- resolutionStrategy {
3
- eachPlugin {
4
- if (requested. id. id == " org.jetbrains.kotlin.multiplatform" || requested. id. id == " org.jetbrains.kotlin.jvm" ) {
5
- useModule(" org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version " )
6
- }
7
- }
8
- }
9
-
10
2
repositories {
11
3
mavenCentral()
12
4
maven { url " https://plugins.gradle.org/m2/" }
Original file line number Diff line number Diff line change @@ -290,7 +290,7 @@ tasks.koverVerify {
290
290
291
291
task testsJar (type : Jar , dependsOn : jvmTestClasses) {
292
292
classifier = ' tests'
293
- from compileTestKotlinJvm. destinationDir
293
+ from( compileTestKotlinJvm. destinationDirectory)
294
294
}
295
295
296
296
artifacts {
Original file line number Diff line number Diff line change @@ -70,4 +70,4 @@ class LockFreeLinkedListLongStressTest : TestBase() {
70
70
}
71
71
require(! expected.hasNext())
72
72
}
73
- }
73
+ }
You can’t perform that action at this time.
0 commit comments