Skip to content

Commit 47bdf03

Browse files
h0tk3yAbduqodiri Qurbonzoda
authored andcommitted
Upgrade kotlin to 1.4.0
1 parent 6a4b911 commit 47bdf03

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

benchmarks/build.gradle.kts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ evaluationDependsOn(":kotlinx-collections-immutable")
1212
val JDK_6: String by project
1313

1414
repositories {
15+
maven(url = "https://dl.bintray.com/kotlin/kotlin-dev")
1516
maven(url = "https://dl.bintray.com/kotlin/kotlinx")
1617
}
1718

build.gradle.kts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
buildscript {
22
repositories {
33
mavenCentral()
4+
maven(url = "https://dl.bintray.com/kotlin/kotlin-dev")
45
maven(url = "https://dl.bintray.com/kotlin/kotlin-eap")
56
}
67
dependencies {
7-
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:1.3.71")
8+
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:1.4.0")
89
}
910
}
1011

@@ -43,6 +44,7 @@ val JDK_6 by ext(System.getenv("JDK_6") ?: findProperty("JDK_6") as String? ?: e
4344
allprojects {
4445
repositories {
4546
mavenCentral()
47+
maven(url = "https://dl.bintray.com/kotlin/kotlin-dev")
4648
maven(url = "https://dl.bintray.com/kotlin/kotlin-eap")
4749
}
4850
}

core/commonTest/src/stress/ExecutionTimeMeasuringTest.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ import kotlin.time.*
1111

1212
@UseExperimental(ExperimentalTime::class)
1313
abstract class ExecutionTimeMeasuringTest {
14-
private var clockMark: ClockMark? = null
14+
private var clockMark: TimeMark? = null
1515

1616
private fun markExecutionStart() {
17-
clockMark = MonoClock.markNow()
17+
clockMark = TimeSource.Monotonic.markNow()
1818
}
1919

2020
private fun printExecutionTime() {

0 commit comments

Comments
 (0)