From 43c9b53fbda38cb0c6ddaf3f6c1b31ef23118e50 Mon Sep 17 00:00:00 2001 From: Jerry Lee Date: Wed, 9 Aug 2023 20:53:00 +0800 Subject: [PATCH] ! bump version to 0.9.8 --- 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 23ff27bc..d8e9d84d 100644 --- a/README.md +++ b/README.md @@ -565,18 +565,18 @@ public class ConcurrencyStrategyDemo { io.foldright cffu - 0.9.7 + 0.9.8 ``` - For `Gradle` projects: ```groovy // Gradle Kotlin DSL - implementation("io.foldright:cffu:0.9.7") + implementation("io.foldright:cffu:0.9.8") ``` ```groovy // Gradle Groovy DSL - implementation 'io.foldright:cffu:0.9.7' + implementation 'io.foldright:cffu:0.9.8' ``` - `cffu Kotlin`支持库: - For `Maven` projects: @@ -585,18 +585,18 @@ public class ConcurrencyStrategyDemo { io.foldright cffu-kotlin - 0.9.7 + 0.9.8 ``` - For `Gradle` projects: ```groovy // Gradle Kotlin DSL - implementation("io.foldright:cffu-kotlin:0.9.7") + implementation("io.foldright:cffu-kotlin:0.9.8") ``` ```groovy // Gradle Groovy DSL - implementation 'io.foldright:cffu-kotlin:0.9.7' + implementation 'io.foldright:cffu-kotlin:0.9.8' ``` - `cffu bom`: - For `Maven` projects: @@ -605,7 +605,7 @@ public class ConcurrencyStrategyDemo { io.foldright cffu-bom - 0.9.7 + 0.9.8 pom import @@ -614,11 +614,11 @@ public class ConcurrencyStrategyDemo { ```groovy // Gradle Kotlin DSL - implementation(platform("io.foldright:cffu-bom:0.9.7")) + implementation(platform("io.foldright:cffu-bom:0.9.8")) ``` ```groovy // Gradle Groovy DSL - implementation platform('io.foldright:cffu-bom:0.9.7') + implementation platform('io.foldright:cffu-bom:0.9.8') ``` - [📌 `TransmittableThreadLocal(TTL)`](https://github.com/alibaba/transmittable-thread-local)的[`cffu executor wrapper SPI`实现](cffu-ttl-executor-wrapper): - For `Maven` projects: @@ -627,7 +627,7 @@ public class ConcurrencyStrategyDemo { io.foldright cffu-ttl-executor-wrapper - 0.9.7 + 0.9.8 runtime ``` @@ -635,11 +635,11 @@ public class ConcurrencyStrategyDemo { ```groovy // Gradle Kotlin DSL - runtimeOnly("io.foldright:cffu-ttl-executor-wrapper:0.9.7") + runtimeOnly("io.foldright:cffu-ttl-executor-wrapper:0.9.8") ``` ```groovy // Gradle Groovy DSL - runtimeOnly 'io.foldright:cffu-ttl-executor-wrapper:0.9.7' + runtimeOnly 'io.foldright:cffu-ttl-executor-wrapper:0.9.8' ``` # 📚 更多资料 diff --git a/cffu-bom/pom.xml b/cffu-bom/pom.xml index c2ae2dbe..5de5bcbb 100644 --- a/cffu-bom/pom.xml +++ b/cffu-bom/pom.xml @@ -10,7 +10,7 @@ --> io.foldright cffu-bom - 0.9.x-SNAPSHOT + 0.9.8 pom ${project.artifactId} ${parent.artifactId} diff --git a/cffu-core/pom.xml b/cffu-core/pom.xml index 00bc4084..f4ca2d7d 100644 --- a/cffu-core/pom.xml +++ b/cffu-core/pom.xml @@ -4,7 +4,7 @@ io.foldright cffu-parent - 0.9.x-SNAPSHOT + 0.9.8 ../pom.xml diff --git a/cffu-kotlin/pom.xml b/cffu-kotlin/pom.xml index f7419e6d..96075e3a 100644 --- a/cffu-kotlin/pom.xml +++ b/cffu-kotlin/pom.xml @@ -4,7 +4,7 @@ io.foldright cffu-parent - 0.9.x-SNAPSHOT + 0.9.8 ../pom.xml diff --git a/cffu-ttl-executor-wrapper/README.md b/cffu-ttl-executor-wrapper/README.md index 3fcff35d..e8d163e5 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 - 0.9.7 + 0.9.8 ``` @@ -26,12 +26,12 @@ For `Gradle` projects: ```groovy // Gradle Kotlin DSL -runtimeOnly("io.foldright:cffu-ttl-executor-wrapper:0.9.7") +runtimeOnly("io.foldright:cffu-ttl-executor-wrapper:0.9.8") ``` ```groovy // Gradle Groovy DSL -runtimeOnly 'io.foldright:cffu-ttl-executor-wrapper:0.9.7' +runtimeOnly 'io.foldright:cffu-ttl-executor-wrapper:0.9.8' ``` `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 90546ca3..a404848b 100644 --- a/cffu-ttl-executor-wrapper/pom.xml +++ b/cffu-ttl-executor-wrapper/pom.xml @@ -4,7 +4,7 @@ io.foldright cffu-parent - 0.9.x-SNAPSHOT + 0.9.8 ../pom.xml diff --git a/demos/cffu-demo/pom.xml b/demos/cffu-demo/pom.xml index 1bf92e14..c9e917be 100644 --- a/demos/cffu-demo/pom.xml +++ b/demos/cffu-demo/pom.xml @@ -4,7 +4,7 @@ io.foldright.cffu-demos demos-parent - 0.9.x-SNAPSHOT + 0.9.8 ../pom.xml diff --git a/demos/cffu-kotlin-demo/pom.xml b/demos/cffu-kotlin-demo/pom.xml index 4ecd1d45..e4d6a2a7 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 - 0.9.x-SNAPSHOT + 0.9.8 ../pom.xml diff --git a/demos/pom.xml b/demos/pom.xml index 5d907aba..d1b29a5c 100644 --- a/demos/pom.xml +++ b/demos/pom.xml @@ -3,7 +3,7 @@ 4.0.0 io.foldright.cffu-demos demos-parent - 0.9.x-SNAPSHOT + 0.9.8 pom diff --git a/pom.xml b/pom.xml index 84b40a15..db6d2877 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ io.foldright cffu-parent - 0.9.x-SNAPSHOT + 0.9.8 pom ${project.artifactId} cffu parent