From ea194a7b9cd1e78f3dbcf1718324f3e6f2b400cc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alexander=20S=C3=B6derberg?= Date: Thu, 25 Jan 2024 07:44:20 +0100 Subject: [PATCH] feat(kotlin): change to beta release --- docs/kotlin/annotations.md | 13 +++++++++++-- docs/kotlin/coroutines.md | 13 +++++++++++-- docs/kotlin/extensions.md | 13 +++++++++++-- 3 files changed, 33 insertions(+), 6 deletions(-) diff --git a/docs/kotlin/annotations.md b/docs/kotlin/annotations.md index 4279c0e..fc4c84e 100644 --- a/docs/kotlin/annotations.md +++ b/docs/kotlin/annotations.md @@ -14,6 +14,15 @@ suspend fun yourCommand( } ``` +## Links + +
+ +- [:fontawesome-brands-github: Source Code](https://github.com/Incendo/cloud) +- [:material-language-kotlin: Dokka](https://javadoc.io/doc/org.incendo/cloud-kotlin-coroutines-annotations/latest) + +
+ ## Installation Cloud is available through [Maven Central](https://central.sonatype.com/artifact/org.incendo/cloud-kotlin-coroutines-annotations). @@ -22,13 +31,13 @@ Cloud is available through [Maven Central](https://central.sonatype.com/artifact === "Gradle (Kotlin)" ```kotlin - implementation("org.incendo:cloud-kotlin-coroutines-annotations:2.0.0-SNAPSHOT") + implementation("org.incendo:cloud-kotlin-coroutines-annotations:2.0.0-beta.1") ``` === "Gradle (Groovy)" ```groovy - implementation 'org.incendo:cloud-kotlin-coroutines-annotations:2.0.0-SNAPSHOT' + implementation 'org.incendo:cloud-kotlin-coroutines-annotations:2.0.0-beta.1' ``` You then need to install the `AnnotationParser` extension: diff --git a/docs/kotlin/coroutines.md b/docs/kotlin/coroutines.md index ce79c57..566c384 100644 --- a/docs/kotlin/coroutines.md +++ b/docs/kotlin/coroutines.md @@ -3,6 +3,15 @@ This module adds coroutine support to commands using builders. For suspending commands methods, see [cloud-kotlin-coroutines-annotations](./annotations.md). +## Links + +
+ +- [:fontawesome-brands-github: Source Code](https://github.com/Incendo/cloud) +- [:material-language-kotlin: Dokka](https://javadoc.io/doc/org.incendo/cloud-kotlin-coroutines/latest) + +
+ ## Installation Cloud is available through [Maven Central](https://central.sonatype.com/artifact/org.incendo/cloud-kotlin-coroutines). @@ -11,13 +20,13 @@ Cloud is available through [Maven Central](https://central.sonatype.com/artifact === "Gradle (Kotlin)" ```kotlin - implementation("org.incendo:cloud-kotlin-coroutines:2.0.0-SNAPSHOT") + implementation("org.incendo:cloud-kotlin-coroutines:2.0.0-beta.1") ``` === "Gradle (Groovy)" ```groovy - implementation 'org.incendo:cloud-kotlin-coroutines:2.0.0-SNAPSHOT' + implementation 'org.incendo:cloud-kotlin-coroutines:2.0.0-beta.1' ``` ## Suspending command execution handlers diff --git a/docs/kotlin/extensions.md b/docs/kotlin/extensions.md index faac004..644dc41 100644 --- a/docs/kotlin/extensions.md +++ b/docs/kotlin/extensions.md @@ -2,6 +2,15 @@ This module contains extensions to different parts of Cloud. +## Links + +
+ +- [:fontawesome-brands-github: Source Code](https://github.com/Incendo/cloud) +- [:material-language-kotlin: Dokka](https://javadoc.io/doc/org.incendo/cloud-kotlin-extensions/latest) + +
+ ## Installation Cloud is available through [Maven Central](https://central.sonatype.com/artifact/org.incendo/cloud-kotlin-extensions). @@ -10,13 +19,13 @@ Cloud is available through [Maven Central](https://central.sonatype.com/artifact === "Gradle (Kotlin)" ```kotlin - implementation("org.incendo:cloud-kotlin-extensions:2.0.0-SNAPSHOT") + implementation("org.incendo:cloud-kotlin-extensions:2.0.0-beta.1") ``` === "Gradle (Groovy)" ```groovy - implementation 'org.incendo:cloud-kotlin-extensions:2.0.0-SNAPSHOT' + implementation 'org.incendo:cloud-kotlin-extensions:2.0.0-beta.1' ``` ## MutableCommandBuilder