Skip to content
This repository has been archived by the owner on Mar 18, 2023. It is now read-only.

Commit

Permalink
Deploy 5.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
fuma-nama committed Aug 19, 2022
1 parent 627abb1 commit 5ea8321
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ Create **Slash Commands**, **Text Commands** with few lines of code
```kotlin
command(name = "hello", description = "Say Hello") {

val size = long("size", "Size of example") {
val size = int("size", "Size of example") {
optional { 6 }
}

Expand Down Expand Up @@ -72,7 +72,7 @@ app.reply(event)
<dependency>
<groupId>io.github.sonmoosans</groupId>
<artifactId>bjda</artifactId>
<version>5.1.1</version>
<version>5.2.0</version>
</dependency>
```

Expand Down Expand Up @@ -101,7 +101,7 @@ val Panel = component {
row {
button("Confirm") {
id = onConfirm
style = ButtonStyle.SUCCESS
success()
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

<groupId>io.github.sonmoosans</groupId>
<artifactId>bjda</artifactId>
<version>5.1.1</version>
<version>5.2.0</version>
<packaging>jar</packaging>
<name>${project.groupId}:${project.artifactId}</name>
<description>
Expand Down

0 comments on commit 5ea8321

Please sign in to comment.