Skip to content

Commit c57c861

Browse files
committed
! bump version to v1.0.0-Alpha2
1 parent 77dbddc commit c57c861

File tree

7 files changed

+20
-20
lines changed

7 files changed

+20
-20
lines changed

README.md

+12-12
Original file line numberDiff line numberDiff line change
@@ -561,18 +561,18 @@ public class ConcurrencyStrategyDemo {
561561
<dependency>
562562
<groupId>io.foldright</groupId>
563563
<artifactId>cffu</artifactId>
564-
<version>1.0.0-Alpha2</version>
564+
<version>1.0.0-Alpha3</version>
565565
</dependency>
566566
```
567567
- For `Gradle` projects:
568568

569569
```groovy
570570
// Gradle Kotlin DSL
571-
implementation("io.foldright:cffu:1.0.0-Alpha2")
571+
implementation("io.foldright:cffu:1.0.0-Alpha3")
572572
```
573573
```groovy
574574
// Gradle Groovy DSL
575-
implementation 'io.foldright:cffu:1.0.0-Alpha2'
575+
implementation 'io.foldright:cffu:1.0.0-Alpha3'
576576
```
577577
- `cffu Kotlin`支持库:
578578
- For `Maven` projects:
@@ -581,18 +581,18 @@ public class ConcurrencyStrategyDemo {
581581
<dependency>
582582
<groupId>io.foldright</groupId>
583583
<artifactId>cffu-kotlin</artifactId>
584-
<version>1.0.0-Alpha2</version>
584+
<version>1.0.0-Alpha3</version>
585585
</dependency>
586586
```
587587
- For `Gradle` projects:
588588

589589
```groovy
590590
// Gradle Kotlin DSL
591-
implementation("io.foldright:cffu-kotlin:1.0.0-Alpha2")
591+
implementation("io.foldright:cffu-kotlin:1.0.0-Alpha3")
592592
```
593593
```groovy
594594
// Gradle Groovy DSL
595-
implementation 'io.foldright:cffu-kotlin:1.0.0-Alpha2'
595+
implementation 'io.foldright:cffu-kotlin:1.0.0-Alpha3'
596596
```
597597
- `cffu bom`:
598598
- For `Maven` projects:
@@ -601,7 +601,7 @@ public class ConcurrencyStrategyDemo {
601601
<dependency>
602602
<groupId>io.foldright</groupId>
603603
<artifactId>cffu-bom</artifactId>
604-
<version>1.0.0-Alpha2</version>
604+
<version>1.0.0-Alpha3</version>
605605
<type>pom</type>
606606
<scope>import</scope>
607607
</dependency>
@@ -610,11 +610,11 @@ public class ConcurrencyStrategyDemo {
610610

611611
```groovy
612612
// Gradle Kotlin DSL
613-
implementation(platform("io.foldright:cffu-bom:1.0.0-Alpha2"))
613+
implementation(platform("io.foldright:cffu-bom:1.0.0-Alpha3"))
614614
```
615615
```groovy
616616
// Gradle Groovy DSL
617-
implementation platform('io.foldright:cffu-bom:1.0.0-Alpha2')
617+
implementation platform('io.foldright:cffu-bom:1.0.0-Alpha3')
618618
```
619619
- [📌 `TransmittableThreadLocal(TTL)`](https://github.com/alibaba/transmittable-thread-local)的[`cffu executor wrapper SPI`实现](cffu-ttl-executor-wrapper):
620620
- For `Maven` projects:
@@ -623,19 +623,19 @@ public class ConcurrencyStrategyDemo {
623623
<dependency>
624624
<groupId>io.foldright</groupId>
625625
<artifactId>cffu-ttl-executor-wrapper</artifactId>
626-
<version>1.0.0-Alpha2</version>
626+
<version>1.0.0-Alpha3</version>
627627
<scope>runtime</scope>
628628
</dependency>
629629
```
630630
- For `Gradle` projects:
631631

632632
```groovy
633633
// Gradle Kotlin DSL
634-
runtimeOnly("io.foldright:cffu-ttl-executor-wrapper:1.0.0-Alpha2")
634+
runtimeOnly("io.foldright:cffu-ttl-executor-wrapper:1.0.0-Alpha3")
635635
```
636636
```groovy
637637
// Gradle Groovy DSL
638-
runtimeOnly 'io.foldright:cffu-ttl-executor-wrapper:1.0.0-Alpha2'
638+
runtimeOnly 'io.foldright:cffu-ttl-executor-wrapper:1.0.0-Alpha3'
639639
```
640640

641641
# 📚 更多资料

cffu-bom/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
-->
1111
<groupId>io.foldright</groupId>
1212
<artifactId>cffu-bom</artifactId>
13-
<version>1.x-SNAPSHOT</version>
13+
<version>1.0.0-Alpha3</version>
1414
<packaging>pom</packaging>
1515
<name>${project.artifactId}</name>
1616
<description>${parent.artifactId}</description>

cffu-core/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>io.foldright</groupId>
66
<artifactId>cffu-parent</artifactId>
7-
<version>1.x-SNAPSHOT</version>
7+
<version>1.0.0-Alpha3</version>
88
<relativePath>../pom.xml</relativePath>
99
</parent>
1010

cffu-kotlin/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>io.foldright</groupId>
66
<artifactId>cffu-parent</artifactId>
7-
<version>1.x-SNAPSHOT</version>
7+
<version>1.0.0-Alpha3</version>
88
<relativePath>../pom.xml</relativePath>
99
</parent>
1010

cffu-ttl-executor-wrapper/README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -18,20 +18,20 @@ For `Maven` projects:
1818
<groupId>io.foldright</groupId>
1919
<artifactId>cffu-ttl-executor-wrapper</artifactId>
2020
<scope>runtime</scope>
21-
<version>1.0.0-Alpha2</version>
21+
<version>1.0.0-Alpha3</version>
2222
</dependency>
2323
```
2424

2525
For `Gradle` projects:
2626

2727
```groovy
2828
// Gradle Kotlin DSL
29-
runtimeOnly("io.foldright:cffu-ttl-executor-wrapper:1.0.0-Alpha2")
29+
runtimeOnly("io.foldright:cffu-ttl-executor-wrapper:1.0.0-Alpha3")
3030
```
3131

3232
```groovy
3333
// Gradle Groovy DSL
34-
runtimeOnly 'io.foldright:cffu-ttl-executor-wrapper:1.0.0-Alpha2'
34+
runtimeOnly 'io.foldright:cffu-ttl-executor-wrapper:1.0.0-Alpha3'
3535
```
3636

3737
`cffu-ttl-executor-wrapper` has published to maven central, find the latest version at

cffu-ttl-executor-wrapper/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>io.foldright</groupId>
66
<artifactId>cffu-parent</artifactId>
7-
<version>1.x-SNAPSHOT</version>
7+
<version>1.0.0-Alpha3</version>
88
<relativePath>../pom.xml</relativePath>
99
</parent>
1010

pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
<groupId>io.foldright</groupId>
66
<artifactId>cffu-parent</artifactId>
7-
<version>1.x-SNAPSHOT</version>
7+
<version>1.0.0-Alpha3</version>
88
<packaging>pom</packaging>
99
<name>${project.artifactId}</name>
1010
<description>cffu parent</description>

0 commit comments

Comments
 (0)