From 08777718fade8ee2509b9a95e8999e6dcaa289e7 Mon Sep 17 00:00:00 2001 From: Sergey Antonov Date: Sat, 28 Nov 2020 19:40:54 +0100 Subject: [PATCH] Update version --- README.md | 6 +++--- build.gradle | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 12f904a..df9d1fb 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-common/0.1.4)](https://search.maven.org/artifact/com.ucasoft.kcron/kcron-common/0.1.4/jar) +[![Maven Central with version prefix filter](https://img.shields.io/maven-central/v/com.ucasoft.kcron/kcron-common/0.1.5)](https://search.maven.org/artifact/com.ucasoft.kcron/kcron-common/0.1.5/jar) ### Features * Kotlin Multiplatform library @@ -25,7 +25,7 @@ kotlin { sourceSets { commonMain { dependencies { - implementation 'com.ucasoft.kcron:kcron-common:0.1.4' + implementation 'com.ucasoft.kcron:kcron-common:0.1.5' } } } @@ -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.4`. +This library is on alpha version `0.1.5`. However, it will be a part of another cool library. Check the news! diff --git a/build.gradle b/build.gradle index 1faf455..5ae239b 100644 --- a/build.gradle +++ b/build.gradle @@ -5,7 +5,7 @@ plugins { } group = 'com.ucasoft.kcron' -version = '0.1.4' +version = '0.1.5' repositories { mavenCentral() @@ -58,7 +58,7 @@ publishing { def libraryType = it.name switch (libraryType) { case 'jvm': - it.artifactId = "${project.name}-jvm" + it.artifactId = "${project.name}" break case 'kotlinMultiplatform': it.artifactId = "${project.name}-native"