Skip to content

Commit

Permalink
feat(kotlin): change to beta release
Browse files Browse the repository at this point in the history
Citymonstret committed Jan 25, 2024

Verified

This commit was signed with the committer’s verified signature.
Citymonstret Alexander Söderberg
1 parent 0455a9b commit ea194a7
Showing 3 changed files with 33 additions and 6 deletions.
13 changes: 11 additions & 2 deletions docs/kotlin/annotations.md
Original file line number Diff line number Diff line change
@@ -14,6 +14,15 @@ suspend fun yourCommand(
}
```

## Links

<div class="grid cards" markdown>

- [: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)

</div>

## 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:
13 changes: 11 additions & 2 deletions docs/kotlin/coroutines.md
Original file line number Diff line number Diff line change
@@ -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

<div class="grid cards" markdown>

- [:fontawesome-brands-github: Source Code](https://github.com/Incendo/cloud)
- [:material-language-kotlin: Dokka](https://javadoc.io/doc/org.incendo/cloud-kotlin-coroutines/latest)

</div>

## 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
13 changes: 11 additions & 2 deletions docs/kotlin/extensions.md
Original file line number Diff line number Diff line change
@@ -2,6 +2,15 @@

This module contains extensions to different parts of Cloud.

## Links

<div class="grid cards" markdown>

- [:fontawesome-brands-github: Source Code](https://github.com/Incendo/cloud)
- [:material-language-kotlin: Dokka](https://javadoc.io/doc/org.incendo/cloud-kotlin-extensions/latest)

</div>

## 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

0 comments on commit ea194a7

Please sign in to comment.