Compare commits

..

8 Commits

Author SHA1 Message Date
d1aab7ccd6 add arm target 2023-10-23 01:27:19 +06:00
58d758f141 Update gradle-wrapper.properties 2023-10-23 01:27:19 +06:00
71bd3f0eb4 update dependencies 2023-10-23 01:27:19 +06:00
bd2a852b16 start 2.2.2 2023-10-23 01:27:19 +06:00
8e844b5875 update kotlinx serialization 2023-10-23 01:26:17 +06:00
e0f7dddf42 update dependencies 2023-10-23 01:26:17 +06:00
d64acc9806 potential fix of #65 2023-10-23 01:26:17 +06:00
58375452c7 start 2.2.1 2023-10-23 01:26:17 +06:00
5 changed files with 31 additions and 10 deletions

View File

@@ -1,5 +1,19 @@
# Changelog
## 2.2.2
* Versions
* `Kotlin`: `1.9.20-RC`
* `Android` (min/target): `34`
## 2.2.1
* Potential fix of [#65](https://github.com/InsanusMokrassar/krontab/issues/65)
* Versions
* `Kotlin`: `1.9.20-Beta`
* `Klock`: `4.0.10`
* `Serialization`: `1.6.0`
## 2.2.0
* Versions

View File

@@ -61,6 +61,7 @@ kotlin {
}
linuxX64()
mingwX64()
linuxArm64()
sourceSets {

View File

@@ -9,13 +9,13 @@ android.useAndroidX=true
android.enableJetifier=false
kotlin_version=1.9.0
kotlin_version=1.9.20-RC
kotlin_coroutines_version=1.7.3
kotlin_serialization_version=1.5.1
kotlin_serialization_version=1.6.0
dokka_version=1.8.20
dokka_version=1.9.10
klockVersion=4.0.9
klockVersion=4.0.10
## Github reease
@@ -25,8 +25,8 @@ github_release_plugin_version=2.4.1
android_gradle_version=7.4.2
android_minSdkVersion=21
android_compileSdkVersion=33
android_buildToolsVersion=33.0.2
android_compileSdkVersion=34
android_buildToolsVersion=34.0.0
dexcount_version=4.0.0
junit_version=4.12
test_ext_junit_version=1.1.3
@@ -36,5 +36,5 @@ androidx_work_version=2.8.1
## Common
version=2.2.0
android_code_version=30
version=2.2.2
android_code_version=32

View File

@@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-7.6.2-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-7.6.3-bin.zip

View File

@@ -108,13 +108,19 @@ internal fun NearDateTimeCalculatorDays(
} else {
dateTime
})
dateTime.copy(
val newDateTime = dateTime.copy(
dayOfMonth = min(dateTime.month.days(dateTime.year), newOne.toInt() + 1), // index1
hour = 0,
minute = 0,
second = 0,
milliseconds = 0
)
// If day of month has not been changed, use old dateTime due to no changes required
if (newDateTime.dayOfMonth == dateTime.dayOfMonth) {
dateTime
} else {
newDateTime
}
}
)