Merge pull request #88 from InsanusMokrassar/0.5.22

0.5.22
This commit is contained in:
InsanusMokrassar 2021-08-25 16:35:02 +06:00 committed by GitHub
commit fc03be3f73
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 16 additions and 13 deletions

View File

@ -1,5 +1,12 @@
# Changelog # Changelog
## 0.5.22
* `Versions`
* `Kotlin`: `1.5.21` -> `1.5.30`
* `Klock`: `2.3.2` -> `2.3.4`
* `AppCompat`: `1.3.0` -> `1.3.1`
## 0.5.21 ## 0.5.21
* `Versions` * `Versions`

View File

@ -12,9 +12,7 @@ package dev.inmo.micro_utils.common
AnnotationTarget.PROPERTY_GETTER, AnnotationTarget.PROPERTY_GETTER,
AnnotationTarget.PROPERTY_SETTER, AnnotationTarget.PROPERTY_SETTER,
AnnotationTarget.FUNCTION, AnnotationTarget.FUNCTION,
AnnotationTarget.TYPE, AnnotationTarget.TYPEALIAS
AnnotationTarget.TYPEALIAS,
AnnotationTarget.TYPE_PARAMETER
) )
annotation class PreviewFeature(val message: String = "It is possible, that behaviour of this thing will be changed or removed in future releases") annotation class PreviewFeature(val message: String = "It is possible, that behaviour of this thing will be changed or removed in future releases")
@ -30,8 +28,6 @@ annotation class PreviewFeature(val message: String = "It is possible, that beha
AnnotationTarget.PROPERTY_GETTER, AnnotationTarget.PROPERTY_GETTER,
AnnotationTarget.PROPERTY_SETTER, AnnotationTarget.PROPERTY_SETTER,
AnnotationTarget.FUNCTION, AnnotationTarget.FUNCTION,
AnnotationTarget.TYPE, AnnotationTarget.TYPEALIAS
AnnotationTarget.TYPEALIAS,
AnnotationTarget.TYPE_PARAMETER
) )
annotation class Warning(val message: String) annotation class Warning(val message: String)

View File

@ -11,7 +11,7 @@ class DiffUtilsTests {
val withIndex = oldList.withIndex() val withIndex = oldList.withIndex()
for (count in 1 .. (floor(oldList.size.toFloat() / 2).toInt())) { for (count in 1 .. (floor(oldList.size.toFloat() / 2).toInt())) {
for ((i, v) in withIndex) { for ((i, _) in withIndex) {
if (i + count > oldList.lastIndex) { if (i + count > oldList.lastIndex) {
continue continue
} }

View File

@ -7,14 +7,14 @@ android.useAndroidX=true
android.enableJetifier=true android.enableJetifier=true
org.gradle.jvmargs=-Xmx2g org.gradle.jvmargs=-Xmx2g
kotlin_version=1.5.21 kotlin_version=1.5.30
kotlin_coroutines_version=1.5.1 kotlin_coroutines_version=1.5.1
kotlin_serialisation_core_version=1.2.2 kotlin_serialisation_core_version=1.2.2
kotlin_exposed_version=0.33.1 kotlin_exposed_version=0.33.1
ktor_version=1.6.2 ktor_version=1.6.2
klockVersion=2.3.2 klockVersion=2.3.4
github_release_plugin_version=2.2.12 github_release_plugin_version=2.2.12
@ -24,12 +24,12 @@ uuidVersion=0.3.0
core_ktx_version=1.6.0 core_ktx_version=1.6.0
androidx_recycler_version=1.2.1 androidx_recycler_version=1.2.1
appcompat_version=1.3.0 appcompat_version=1.3.1
android_minSdkVersion=19 android_minSdkVersion=19
android_compileSdkVersion=30 android_compileSdkVersion=30
android_buildToolsVersion=30.0.3 android_buildToolsVersion=30.0.3
dexcount_version=2.1.0-RC01 dexcount_version=3.0.0
junit_version=4.12 junit_version=4.12
test_ext_junit_version=1.1.2 test_ext_junit_version=1.1.2
espresso_core=3.3.0 espresso_core=3.3.0
@ -45,5 +45,5 @@ dokka_version=1.5.0
# Project data # Project data
group=dev.inmo group=dev.inmo
version=0.5.21 version=0.5.22
android_code_version=62 android_code_version=63