From 8af34188fb50ccc1f46a0ad7fa023bd3dcaec14b Mon Sep 17 00:00:00 2001 From: Jerry Lee Date: Sat, 10 Aug 2024 18:27:18 +0800 Subject: [PATCH] ! bump version to `v1.0.0-Alpha18` --- README.md | 24 ++++++++++++------------ cffu-bom/pom.xml | 2 +- cffu-core/pom.xml | 2 +- cffu-kotlin/pom.xml | 2 +- cffu-ttl-executor-wrapper/README.md | 6 +++--- cffu-ttl-executor-wrapper/pom.xml | 2 +- demos/cffu-demo/pom.xml | 2 +- demos/cffu-kotlin-demo/pom.xml | 2 +- demos/pom.xml | 2 +- pom.xml | 2 +- 10 files changed, 23 insertions(+), 23 deletions(-) diff --git a/README.md b/README.md index c36b2e43..7245e9bc 100644 --- a/README.md +++ b/README.md @@ -610,18 +610,18 @@ public class ConcurrencyStrategyDemo { io.foldright cffu - 1.0.0-Alpha17 + 1.0.0-Alpha18 ``` - For `Gradle` projects: ```groovy // Gradle Kotlin DSL - implementation("io.foldright:cffu:1.0.0-Alpha17") + implementation("io.foldright:cffu:1.0.0-Alpha18") ``` ```groovy // Gradle Groovy DSL - implementation 'io.foldright:cffu:1.0.0-Alpha17' + implementation 'io.foldright:cffu:1.0.0-Alpha18' ``` - `cffu Kotlin`支持库: - For `Maven` projects: @@ -630,18 +630,18 @@ public class ConcurrencyStrategyDemo { io.foldright cffu-kotlin - 1.0.0-Alpha17 + 1.0.0-Alpha18 ``` - For `Gradle` projects: ```groovy // Gradle Kotlin DSL - implementation("io.foldright:cffu-kotlin:1.0.0-Alpha17") + implementation("io.foldright:cffu-kotlin:1.0.0-Alpha18") ``` ```groovy // Gradle Groovy DSL - implementation 'io.foldright:cffu-kotlin:1.0.0-Alpha17' + implementation 'io.foldright:cffu-kotlin:1.0.0-Alpha18' ``` - `cffu bom`: - For `Maven` projects: @@ -650,7 +650,7 @@ public class ConcurrencyStrategyDemo { io.foldright cffu-bom - 1.0.0-Alpha17 + 1.0.0-Alpha18 pom import @@ -659,11 +659,11 @@ public class ConcurrencyStrategyDemo { ```groovy // Gradle Kotlin DSL - implementation(platform("io.foldright:cffu-bom:1.0.0-Alpha17")) + implementation(platform("io.foldright:cffu-bom:1.0.0-Alpha18")) ``` ```groovy // Gradle Groovy DSL - implementation platform('io.foldright:cffu-bom:1.0.0-Alpha17') + implementation platform('io.foldright:cffu-bom:1.0.0-Alpha18') ``` - [📌 `TransmittableThreadLocal(TTL)`](https://github.com/alibaba/transmittable-thread-local)的[`cffu executor wrapper SPI`实现](cffu-ttl-executor-wrapper): - For `Maven` projects: @@ -672,7 +672,7 @@ public class ConcurrencyStrategyDemo { io.foldright cffu-ttl-executor-wrapper - 1.0.0-Alpha17 + 1.0.0-Alpha18 runtime ``` @@ -680,11 +680,11 @@ public class ConcurrencyStrategyDemo { ```groovy // Gradle Kotlin DSL - runtimeOnly("io.foldright:cffu-ttl-executor-wrapper:1.0.0-Alpha17") + runtimeOnly("io.foldright:cffu-ttl-executor-wrapper:1.0.0-Alpha18") ``` ```groovy // Gradle Groovy DSL - runtimeOnly 'io.foldright:cffu-ttl-executor-wrapper:1.0.0-Alpha17' + runtimeOnly 'io.foldright:cffu-ttl-executor-wrapper:1.0.0-Alpha18' ``` # 📚 更多资料 diff --git a/cffu-bom/pom.xml b/cffu-bom/pom.xml index 3626520c..f83037bc 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-Alpha18 pom ${project.artifactId} cffu bom diff --git a/cffu-core/pom.xml b/cffu-core/pom.xml index 17b1921d..bb2bfa47 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-Alpha18 ../pom.xml diff --git a/cffu-kotlin/pom.xml b/cffu-kotlin/pom.xml index aa19e9e6..72dcec24 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-Alpha18 ../pom.xml diff --git a/cffu-ttl-executor-wrapper/README.md b/cffu-ttl-executor-wrapper/README.md index f790fe22..96551d39 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-Alpha17 + 1.0.0-Alpha18 ``` @@ -26,12 +26,12 @@ For `Gradle` projects: ```groovy // Gradle Kotlin DSL -runtimeOnly("io.foldright:cffu-ttl-executor-wrapper:1.0.0-Alpha17") +runtimeOnly("io.foldright:cffu-ttl-executor-wrapper:1.0.0-Alpha18") ``` ```groovy // Gradle Groovy DSL -runtimeOnly 'io.foldright:cffu-ttl-executor-wrapper:1.0.0-Alpha17' +runtimeOnly 'io.foldright:cffu-ttl-executor-wrapper:1.0.0-Alpha18' ``` `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..85890cb4 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-Alpha18 ../pom.xml diff --git a/demos/cffu-demo/pom.xml b/demos/cffu-demo/pom.xml index 0c7c0602..bfaf7474 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-Alpha18 ../pom.xml diff --git a/demos/cffu-kotlin-demo/pom.xml b/demos/cffu-kotlin-demo/pom.xml index 1a966385..899e317b 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-Alpha18 ../pom.xml diff --git a/demos/pom.xml b/demos/pom.xml index 78a98647..99775442 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-Alpha18 pom diff --git a/pom.xml b/pom.xml index ec43ac45..36d9d1e4 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ io.foldright cffu-parent - 1.x-SNAPSHOT + 1.0.0-Alpha18 pom ${project.artifactId} cffu parent