diff --git a/README.md b/README.md
index 6b5eff21..630067fd 100644
--- a/README.md
+++ b/README.md
@@ -19,7 +19,7 @@
-👉 `cffu`(`CompletableFuture Fu` 🦝)是一个小小的[`CompletableFuture(CF)`](https://docs.oracle.com/en/java/javase/21/docs/api/java.base/java/util/concurrent/CompletableFuture.html)辅助增强库,提升`CF`使用体验并减少误用,期望在业务中更方便高效安全地使用`CF`。
+👉 `cffu`(`CompletableFuture Fu` 🦝)是一个小小的[`CompletableFuture(CF)`](https://docs.oracle.com/en/java/javase/21/docs/api/java.base/java/util/concurrent/CompletableFuture.html)辅助增强库,提升`CF`使用体验并减少误用,在业务中更方便高效安全地使用`CF`。
欢迎 👏 💖
@@ -560,18 +560,18 @@ public class ConcurrencyStrategyDemo {
io.foldright
cffu
- 1.0.0-Alpha6
+ 1.0.0-Alpha7
```
- For `Gradle` projects:
```groovy
// Gradle Kotlin DSL
- implementation("io.foldright:cffu:1.0.0-Alpha6")
+ implementation("io.foldright:cffu:1.0.0-Alpha7")
```
```groovy
// Gradle Groovy DSL
- implementation 'io.foldright:cffu:1.0.0-Alpha6'
+ implementation 'io.foldright:cffu:1.0.0-Alpha7'
```
- `cffu Kotlin`支持库:
- For `Maven` projects:
@@ -580,18 +580,18 @@ public class ConcurrencyStrategyDemo {
io.foldright
cffu-kotlin
- 1.0.0-Alpha6
+ 1.0.0-Alpha7
```
- For `Gradle` projects:
```groovy
// Gradle Kotlin DSL
- implementation("io.foldright:cffu-kotlin:1.0.0-Alpha6")
+ implementation("io.foldright:cffu-kotlin:1.0.0-Alpha7")
```
```groovy
// Gradle Groovy DSL
- implementation 'io.foldright:cffu-kotlin:1.0.0-Alpha6'
+ implementation 'io.foldright:cffu-kotlin:1.0.0-Alpha7'
```
- `cffu bom`:
- For `Maven` projects:
@@ -600,7 +600,7 @@ public class ConcurrencyStrategyDemo {
io.foldright
cffu-bom
- 1.0.0-Alpha6
+ 1.0.0-Alpha7
pom
import
@@ -609,11 +609,11 @@ public class ConcurrencyStrategyDemo {
```groovy
// Gradle Kotlin DSL
- implementation(platform("io.foldright:cffu-bom:1.0.0-Alpha6"))
+ implementation(platform("io.foldright:cffu-bom:1.0.0-Alpha7"))
```
```groovy
// Gradle Groovy DSL
- implementation platform('io.foldright:cffu-bom:1.0.0-Alpha6')
+ implementation platform('io.foldright:cffu-bom:1.0.0-Alpha7')
```
- [📌 `TransmittableThreadLocal(TTL)`](https://github.com/alibaba/transmittable-thread-local)的[`cffu executor wrapper SPI`实现](cffu-ttl-executor-wrapper):
- For `Maven` projects:
@@ -622,7 +622,7 @@ public class ConcurrencyStrategyDemo {
io.foldright
cffu-ttl-executor-wrapper
- 1.0.0-Alpha6
+ 1.0.0-Alpha7
runtime
```
@@ -630,11 +630,11 @@ public class ConcurrencyStrategyDemo {
```groovy
// Gradle Kotlin DSL
- runtimeOnly("io.foldright:cffu-ttl-executor-wrapper:1.0.0-Alpha6")
+ runtimeOnly("io.foldright:cffu-ttl-executor-wrapper:1.0.0-Alpha7")
```
```groovy
// Gradle Groovy DSL
- runtimeOnly 'io.foldright:cffu-ttl-executor-wrapper:1.0.0-Alpha6'
+ runtimeOnly 'io.foldright:cffu-ttl-executor-wrapper:1.0.0-Alpha7'
```
# 📚 更多资料
@@ -645,7 +645,7 @@ public class ConcurrencyStrategyDemo {
- [`CompletableFuture` Guide](docs/completable-future-guide.md)
- 完备说明`CompletableFuture`的使用方式
- 给出 最佳实践建议 与 使用陷阱注意
- - 期望在业务中,更有效安全地使用`CompletableFuture`
+ - 在业务中,更有效安全地使用`CompletableFuture`
# 👋 关于库名
diff --git a/cffu-bom/pom.xml b/cffu-bom/pom.xml
index 0ca62871..abe68a38 100644
--- a/cffu-bom/pom.xml
+++ b/cffu-bom/pom.xml
@@ -10,7 +10,7 @@
-->
io.foldright
cffu-bom
- 1.x-SNAPSHOT
+ 1.0.0-Alpha7
pom
${project.artifactId}
cffu bom
diff --git a/cffu-core/pom.xml b/cffu-core/pom.xml
index 2dfb2ead..fa95eee1 100644
--- a/cffu-core/pom.xml
+++ b/cffu-core/pom.xml
@@ -4,7 +4,7 @@
io.foldright
cffu-parent
- 1.x-SNAPSHOT
+ 1.0.0-Alpha7
../pom.xml
diff --git a/cffu-kotlin/pom.xml b/cffu-kotlin/pom.xml
index a40bfe8e..6ff10782 100644
--- a/cffu-kotlin/pom.xml
+++ b/cffu-kotlin/pom.xml
@@ -4,7 +4,7 @@
io.foldright
cffu-parent
- 1.x-SNAPSHOT
+ 1.0.0-Alpha7
../pom.xml
diff --git a/cffu-ttl-executor-wrapper/README.md b/cffu-ttl-executor-wrapper/README.md
index 7602ab0a..766ca8c5 100644
--- a/cffu-ttl-executor-wrapper/README.md
+++ b/cffu-ttl-executor-wrapper/README.md
@@ -18,7 +18,7 @@ For `Maven` projects:
io.foldright
cffu-ttl-executor-wrapper
runtime
- 1.0.0-Alpha6
+ 1.0.0-Alpha7
```
@@ -26,12 +26,12 @@ For `Gradle` projects:
```groovy
// Gradle Kotlin DSL
-runtimeOnly("io.foldright:cffu-ttl-executor-wrapper:1.0.0-Alpha6")
+runtimeOnly("io.foldright:cffu-ttl-executor-wrapper:1.0.0-Alpha7")
```
```groovy
// Gradle Groovy DSL
-runtimeOnly 'io.foldright:cffu-ttl-executor-wrapper:1.0.0-Alpha6'
+runtimeOnly 'io.foldright:cffu-ttl-executor-wrapper:1.0.0-Alpha7'
```
`cffu-ttl-executor-wrapper` has published to maven central, find the latest version at
diff --git a/cffu-ttl-executor-wrapper/pom.xml b/cffu-ttl-executor-wrapper/pom.xml
index e345edd6..ff5d8415 100644
--- a/cffu-ttl-executor-wrapper/pom.xml
+++ b/cffu-ttl-executor-wrapper/pom.xml
@@ -4,7 +4,7 @@
io.foldright
cffu-parent
- 1.x-SNAPSHOT
+ 1.0.0-Alpha7
../pom.xml
diff --git a/demos/cffu-demo/pom.xml b/demos/cffu-demo/pom.xml
index 0c7c0602..fb7e5220 100644
--- a/demos/cffu-demo/pom.xml
+++ b/demos/cffu-demo/pom.xml
@@ -4,7 +4,7 @@
io.foldright.cffu-demos
demos-parent
- 1.x-SNAPSHOT
+ 1.0.0-Alpha7
../pom.xml
diff --git a/demos/cffu-kotlin-demo/pom.xml b/demos/cffu-kotlin-demo/pom.xml
index 1a966385..edac6d37 100644
--- a/demos/cffu-kotlin-demo/pom.xml
+++ b/demos/cffu-kotlin-demo/pom.xml
@@ -4,7 +4,7 @@
io.foldright.cffu-demos
demos-parent
- 1.x-SNAPSHOT
+ 1.0.0-Alpha7
../pom.xml
diff --git a/demos/pom.xml b/demos/pom.xml
index aa16ecd6..bdacda75 100644
--- a/demos/pom.xml
+++ b/demos/pom.xml
@@ -3,7 +3,7 @@
4.0.0
io.foldright.cffu-demos
demos-parent
- 1.x-SNAPSHOT
+ 1.0.0-Alpha7
pom
diff --git a/pom.xml b/pom.xml
index 1d138bb2..1cbabb0b 100644
--- a/pom.xml
+++ b/pom.xml
@@ -4,7 +4,7 @@
io.foldright
cffu-parent
- 1.x-SNAPSHOT
+ 1.0.0-Alpha7
pom
${project.artifactId}
cffu parent