From 17b6086b01472fd6878d74ffc2aa8d4308b38b8a Mon Sep 17 00:00:00 2001 From: Sergey Antonov Date: Fri, 27 Nov 2020 23:40:34 +0100 Subject: [PATCH] Update Version --- README.md | 6 +++--- build.gradle | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 21996ef..e48065e 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # KCron Common Cron realization for Kotlin Multiplatform -[![Maven Central with version prefix filter](https://img.shields.io/maven-central/v/com.ucasoft.kcron/KCron/0.1.1)](https://search.maven.org/artifact/com.ucasoft.kcron/KCron/0.1.1/jar) +[![Maven Central with version prefix filter](https://img.shields.io/maven-central/v/com.ucasoft.kcron/kcron-common/0.1.2)](https://search.maven.org/artifact/com.ucasoft.kcron/kcron-common/0.1.2/jar) ### Features * Kotlin Multiplatform library @@ -25,7 +25,7 @@ kotlin { sourceSets { commonMain { dependencies { - implementation 'com.ucasoft.kcron:kcron-common:0.1.1' + implementation 'com.ucasoft.kcron:kcron-common:0.1.2' } } } @@ -78,6 +78,6 @@ builder.years(2021..2025) println(builder.expression) // 0/10 5-25 5,12 ? * 7#5 2021-2025 ``` ### Current status -This library is on alpha version `0.1.1`. +This library is on alpha version `0.1.2`. However, it will be a part of another cool library. Check the news! diff --git a/build.gradle b/build.gradle index 509c8b7..bb81047 100644 --- a/build.gradle +++ b/build.gradle @@ -5,7 +5,7 @@ plugins { } group = 'com.ucasoft.kcron' -version = '0.1.1' +version = '0.1.2' repositories { mavenCentral()