Skip to content

Commit

Permalink
release 1.1.2 for Java doc update
Browse files Browse the repository at this point in the history
  • Loading branch information
hltj committed Apr 9, 2021
1 parent 750133d commit 5a7da84
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 21 deletions.
20 changes: 10 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,8 @@ Convenient Utilities for Vert.x [`Future`](https://vertx.io/docs/apidocs/io/vert

### Vert.x

- [x] 4.0.2 - 4.0.3 ([with `vertx-core` excluded](#with-vertx-core-excluded))
- [x] 4.0.0
- [x] 4.0.3
- [x] 4.0.0 - 4.0.2 ([with `vertx-core` excluded](#with-vertx-core-excluded))
- [x] 3.9.0 - 3.9.5 ([with `vertx-core` excluded](#with-vertx-core-excluded))
- [x] 3.8.5 ([with `vertx-core` excluded](#with-vertx-core-excluded))

Expand All @@ -66,26 +66,26 @@ Convenient Utilities for Vert.x [`Future`](https://vertx.io/docs/apidocs/io/vert
<dependency>
<groupId>me.hltj</groupId>
<artifactId>vertx-future-utils</artifactId>
<version>1.1.1</version>
<version>1.1.2</version>
</dependency>
```

### Gradle Kotlin DSL

``` kotlin
implementation(group = "me.hltj", name = "vertx-future-utils", version = "1.1.1")
implementation(group = "me.hltj", name = "vertx-future-utils", version = "1.1.2")
```

### Gradle Groovy DSL

``` groovy
implementation group: 'me.hltj', name: 'vertx-future-utils', version: '1.1.1'
implementation group: 'me.hltj', name: 'vertx-future-utils', version: '1.1.2'
```

### With `vertx-core` Excluded

The default dependent version of `io.vertx:vertx-core` is `4.0.0`, if you want to use `vertx-future-utils`
with `vertx-core` `3.8.5`, `3.9.0` to `3.9.5`, or `4.0.2` to `4.0.3` please exclude the default one.
The default dependent version of `io.vertx:vertx-core` is `4.0.3`, if you want to use `vertx-future-utils`
with `vertx-core` `3.8.5`, `3.9.0` to `3.9.5`, or `4.0.0` to `4.0.2` please exclude the default one.

<details>

Expand All @@ -95,7 +95,7 @@ with `vertx-core` `3.8.5`, `3.9.0` to `3.9.5`, or `4.0.2` to `4.0.3` please excl
<dependency>
<groupId>me.hltj</groupId>
<artifactId>vertx-future-utils</artifactId>
<version>1.1.1</version>
<version>1.1.2</version>
<exclusions>
<exclusion>
<groupId>io.vertx</groupId>
Expand All @@ -108,15 +108,15 @@ with `vertx-core` `3.8.5`, `3.9.0` to `3.9.5`, or `4.0.2` to `4.0.3` please excl
#### for Gradle Kotlin DSL

``` kotlin
implementation(group = "me.hltj", name = "vertx-future-utils", version = "1.1.1") {
implementation(group = "me.hltj", name = "vertx-future-utils", version = "1.1.2") {
exclude(group = "io.vertx", module = "vertx-core")
}
```

#### for Gradle Groovy DSL

``` groovy
implementation group: 'me.hltj', name: 'vertx-future-utils', version: '1.1.1', {
implementation group: 'me.hltj', name: 'vertx-future-utils', version: '1.1.2', {
exclude group: "io.vertx", module: "vertx-core"
}
```
Expand Down
20 changes: 10 additions & 10 deletions README_zh_CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,8 @@

### Vert.x

- [x] 4.0.2 - 4.0.3([排除 `vertx-core` 方式](#排除-vertx-core-方式)
- [x] 4.0.0
- [x] 4.0.3
- [x] 4.0.0 - 4.0.2([排除 `vertx-core` 方式](#排除-vertx-core-方式)
- [x] 3.9.0 - 3.9.5([排除 `vertx-core` 方式](#排除-vertx-core-方式)
- [x] 3.8.5([排除 `vertx-core` 方式](#排除-vertx-core-方式)

Expand All @@ -66,26 +66,26 @@
<dependency>
<groupId>me.hltj</groupId>
<artifactId>vertx-future-utils</artifactId>
<version>1.1.1</version>
<version>1.1.2</version>
</dependency>
```

### Gradle Kotlin DSL

``` kotlin
implementation(group = "me.hltj", name = "vertx-future-utils", version = "1.1.1")
implementation(group = "me.hltj", name = "vertx-future-utils", version = "1.1.2")
```

### Gradle Groovy DSL

``` groovy
implementation group: 'me.hltj', name: 'vertx-future-utils', version: '1.1.1'
implementation group: 'me.hltj', name: 'vertx-future-utils', version: '1.1.2'
```

### 排除 `vertx-core` 方式

默认依赖的 `io.vertx:vertx-core` 版本是 `4.0.0`,如果想将 `vertx-future-utils`
用于 `vertx-core``3.8.5``3.9.0``3.9.5` 或者 `4.0.2` to `4.0.3` 的场景,那么需要排除默认依赖。
默认依赖的 `io.vertx:vertx-core` 版本是 `4.0.3`,如果想将 `vertx-future-utils`
用于 `vertx-core``3.8.5``3.9.0``3.9.5` 或者 `4.0.0` `4.0.2` 的场景,那么需要排除默认依赖。

<details>

Expand All @@ -95,7 +95,7 @@ implementation group: 'me.hltj', name: 'vertx-future-utils', version: '1.1.1'
<dependency>
<groupId>me.hltj</groupId>
<artifactId>vertx-future-utils</artifactId>
<version>1.1.1</version>
<version>1.1.2</version>
<exclusions>
<exclusion>
<groupId>io.vertx</groupId>
Expand All @@ -108,15 +108,15 @@ implementation group: 'me.hltj', name: 'vertx-future-utils', version: '1.1.1'
#### 对于 Gradle Kotlin DSL

``` kotlin
implementation(group = "me.hltj", name = "vertx-future-utils", version = "1.1.1") {
implementation(group = "me.hltj", name = "vertx-future-utils", version = "1.1.2") {
exclude(group = "io.vertx", module = "vertx-core")
}
```

#### 对于 Gradle Groovy DSL

``` groovy
implementation group: 'me.hltj', name: 'vertx-future-utils', version: '1.1.1', {
implementation group: 'me.hltj', name: 'vertx-future-utils', version: '1.1.2', {
exclude group: "io.vertx", module: "vertx-core"
}
```
Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ plugins {
}

group = "me.hltj"
version = "1.1.1"
version = "1.1.2"

repositories {
mavenCentral()
Expand Down

0 comments on commit 5a7da84

Please sign in to comment.