Merge pull request #11 from InsanusMokrassar/0.4.2

0.4.2
This commit is contained in:
InsanusMokrassar 2021-01-01 21:11:16 +06:00 committed by GitHub
commit aedb49f6f8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 12 additions and 4 deletions

View File

@ -1,5 +1,12 @@
# Changelog
## 0.4.2
* Versions
* `Kotlin`: `1.4.20` -> `1.4.21`
* `Klock`: `2.0.1` -> `2.0.3`
* `CronDateTimeScheduler` now is deprecated and will be set up as `internal` in future
## 0.4.1
* Versions:

View File

@ -1,6 +1,6 @@
# krontab
[ ![Download](https://api.bintray.com/packages/insanusmokrassar/InsanusMokrassar/krontab-mpp/images/download.svg) ](https://bintray.com/insanusmokrassar/InsanusMokrassar/krontab-mpp/_latestVersion)
[![Download](https://api.bintray.com/packages/insanusmokrassar/InsanusMokrassar/krontab-mpp/images/download.svg) ](https://bintray.com/insanusmokrassar/InsanusMokrassar/krontab-mpp/_latestVersion)
[![Maven Central](https://maven-badges.herokuapp.com/maven-central/dev.inmo/krontab/badge.svg)](https://maven-badges.herokuapp.com/maven-central/dev.inmo/krontab)
[![Build Status](https://travis-ci.com/InsanusMokrassar/krontab.svg?branch=master)](https://travis-ci.com/InsanusMokrassar/krontab)

View File

@ -16,7 +16,7 @@ plugins {
id "org.jetbrains.dokka" version "$dokka_version"
}
project.version = "0.4.1"
project.version = "0.4.2"
project.group = "dev.inmo"
apply from: "publish.gradle"

View File

@ -6,12 +6,12 @@ kotlin.incremental.js=true
kotlin.incremental.multiplatform=true
kotlin_version=1.4.20
kotlin_version=1.4.21
kotlin_coroutines_version=1.4.2
dokka_version=1.4.20
klockVersion=2.0.1
klockVersion=2.0.3
github_release_plugin_version=2.2.12

View File

@ -17,6 +17,7 @@ import dev.inmo.krontab.anyCronDateTime
* @see dev.inmo.krontab.builder.buildSchedule
* @see dev.inmo.krontab.builder.SchedulerBuilder
*/
@Deprecated("This class will get internal status in future")
data class CronDateTimeScheduler internal constructor(
internal val cronDateTimes: List<CronDateTime>
) : KronScheduler {