From d5a66f6853eb8b3e527fecdba1c410f2093aba3d Mon Sep 17 00:00:00 2001 From: Infendro Date: Sat, 17 Jan 2026 16:02:14 +0100 Subject: [PATCH] bump version to 1.4.1 --- README.md | 11 +---------- build.gradle.kts | 2 +- gradle/libs.versions.toml | 2 +- 3 files changed, 3 insertions(+), 12 deletions(-) diff --git a/README.md b/README.md index 67ec8e5..7744887 100644 --- a/README.md +++ b/README.md @@ -2,15 +2,6 @@ `cli-kt` is a Kotlin Multiplatform framework for implementing terminal applications. -## Targets - -| Target | Status | -|------------------|---------------| -| JVM | Supported | -| JavaScript | Supported | -| Native (Linux) | Supported | -| Native (Windows) | Not Supported | - ## Installation Add the following to your `build.gradle.kts`. @@ -21,7 +12,7 @@ repositories { } dependencies { - implementation("com.infendro:cli:1.4.0") + implementation("com.infendro:cli:1.4.1") } ``` diff --git a/build.gradle.kts b/build.gradle.kts index 2492828..7d00784 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -5,7 +5,7 @@ import com.infendro.plugin.token import org.jetbrains.kotlin.gradle.ExperimentalWasmDsl group = "com.infendro" -version = "1.4.0" +version = "1.4.1" plugins { alias(libs.plugins.infendro) diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index 1139889..1896437 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -1,6 +1,6 @@ [versions] infendro = "1.0.0" -kotlin = "2.2.21" +kotlin = "2.3.0" [plugins] infendro = { id = "com.infendro.plugin", version.ref = "infendro" }