diff --git a/README.md b/README.md
index 6d8037e..e2a4755 100644
--- a/README.md
+++ b/README.md
@@ -61,20 +61,20 @@ Convenient Utilities for Vert.x [`Future`](https://vertx.io/docs/apidocs/io/vert
me.hltj
vertx-future-utils
- 1.1.0
+ 1.1.1
```
### Gradle Kotlin DSL
``` kotlin
-implementation(group = "me.hltj", name = "vertx-future-utils", version = "1.1.0")
+implementation(group = "me.hltj", name = "vertx-future-utils", version = "1.1.1")
```
### Gradle Groovy DSL
``` groovy
-implementation 'me.hltj:vertx-future-utils:1.1.0'
+implementation 'me.hltj:vertx-future-utils:1.1.1'
```
### With `vertx-core` Excluded
@@ -90,7 +90,7 @@ with `vertx-core` `3.8.5` or `3.9.0` to `3.9.4`, please exclude the default one.
me.hltj
vertx-future-utils
- 1.1.0
+ 1.1.1
io.vertx
@@ -103,7 +103,7 @@ with `vertx-core` `3.8.5` or `3.9.0` to `3.9.4`, please exclude the default one.
#### for Gradle Kotlin DSL
``` kotlin
-implementation(group = "me.hltj", name = "vertx-future-utils", version = "1.1.0") {
+implementation(group = "me.hltj", name = "vertx-future-utils", version = "1.1.1") {
exclude(group = "io.vertx", module = "vertx-core")
}
```
@@ -111,7 +111,7 @@ implementation(group = "me.hltj", name = "vertx-future-utils", version = "1.1.0"
#### for Gradle Groovy DSL
``` groovy
-implementation 'me.hltj:vertx-future-utils:1.1.0', {
+implementation 'me.hltj:vertx-future-utils:1.1.1', {
exclude group: "io.vertx", module: "vertx-core"
}
```
diff --git a/build.gradle.kts b/build.gradle.kts
index 7c7d36f..6e4b8c0 100644
--- a/build.gradle.kts
+++ b/build.gradle.kts
@@ -8,7 +8,7 @@ plugins {
}
group = "me.hltj"
-version = "1.1.0"
+version = "1.1.1"
repositories {
mavenCentral()