mirror of
https://github.com/InsanusMokrassar/krontab.git
synced 2024-11-22 16:23:55 +00:00
update dependencies
This commit is contained in:
parent
fde5d91375
commit
15e3430a55
@ -2,6 +2,11 @@
|
|||||||
|
|
||||||
## 0.6.0
|
## 0.6.0
|
||||||
|
|
||||||
|
* Versions
|
||||||
|
* `Kotlin`: `1.4.32` -> `1.5.0`
|
||||||
|
* `Coroutines`: `1.4.3` -> `1.5.0-RC`
|
||||||
|
* `Klock`: `2.0.7` -> `2.1.0`
|
||||||
|
|
||||||
## 0.5.2
|
## 0.5.2
|
||||||
|
|
||||||
* Versions
|
* Versions
|
||||||
|
@ -10,7 +10,7 @@ buildscript {
|
|||||||
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
||||||
classpath "com.github.breadmoirai:github-release:$github_release_plugin_version"
|
classpath "com.github.breadmoirai:github-release:$github_release_plugin_version"
|
||||||
classpath "com.getkeepsafe.dexcount:dexcount-gradle-plugin:$dexcount_version"
|
classpath "com.getkeepsafe.dexcount:dexcount-gradle-plugin:$dexcount_version"
|
||||||
classpath 'com.android.tools.build:gradle:4.0.2'
|
classpath 'com.android.tools.build:gradle:4.1.3'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -125,10 +125,6 @@ android {
|
|||||||
targetCompatibility JavaVersion.VERSION_1_8
|
targetCompatibility JavaVersion.VERSION_1_8
|
||||||
}
|
}
|
||||||
|
|
||||||
kotlinOptions {
|
|
||||||
jvmTarget = JavaVersion.VERSION_1_8.toString()
|
|
||||||
}
|
|
||||||
|
|
||||||
sourceSets {
|
sourceSets {
|
||||||
main.java.srcDirs += 'src/main/kotlin'
|
main.java.srcDirs += 'src/main/kotlin'
|
||||||
test {
|
test {
|
||||||
|
@ -8,12 +8,12 @@ android.useAndroidX=true
|
|||||||
android.enableJetifier=false
|
android.enableJetifier=false
|
||||||
|
|
||||||
|
|
||||||
kotlin_version=1.4.32
|
kotlin_version=1.5.0
|
||||||
kotlin_coroutines_version=1.4.3
|
kotlin_coroutines_version=1.5.0-RC
|
||||||
|
|
||||||
dokka_version=1.4.30
|
dokka_version=1.4.32
|
||||||
|
|
||||||
klockVersion=2.0.7
|
klockVersion=2.1.0
|
||||||
|
|
||||||
## Github reease
|
## Github reease
|
||||||
|
|
||||||
@ -23,7 +23,7 @@ github_release_plugin_version=2.2.12
|
|||||||
|
|
||||||
android_minSdkVersion=19
|
android_minSdkVersion=19
|
||||||
android_compileSdkVersion=30
|
android_compileSdkVersion=30
|
||||||
android_buildToolsVersion=30.0.2
|
android_buildToolsVersion=30.0.3
|
||||||
dexcount_version=2.0.0
|
dexcount_version=2.0.0
|
||||||
junit_version=4.12
|
junit_version=4.12
|
||||||
test_ext_junit_version=1.1.2
|
test_ext_junit_version=1.1.2
|
||||||
|
@ -68,7 +68,7 @@ class StringParseTest {
|
|||||||
|
|
||||||
runTest {
|
runTest {
|
||||||
val ranges = rangesEnds.map { it.first .. it.second }.flatten().toMutableList()
|
val ranges = rangesEnds.map { it.first .. it.second }.flatten().toMutableList()
|
||||||
val expectedCollects = rangesEnds.sumBy { it.second - it.first + 1 }
|
val expectedCollects = rangesEnds.sumOf { it.second - it.first + 1 }
|
||||||
var collected = 0
|
var collected = 0
|
||||||
|
|
||||||
flow.takeWhile { ranges.isNotEmpty() }.collect {
|
flow.takeWhile { ranges.isNotEmpty() }.collect {
|
||||||
|
Loading…
Reference in New Issue
Block a user