Skip to content

Commit e95a517

Browse files
authored
Merge pull request #439 from MyCATApache/dev
update version
2 parents 92c2491 + 0ff5f72 commit e95a517

File tree

16 files changed

+49
-49
lines changed

16 files changed

+49
-49
lines changed

Diff for: .github/workflows/pr-validation-dev-test.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
- name: test
3333
run: |
3434
mvn -B package -Dmaven.test.skip=true
35-
java -jar mycat2/target/mycat2-1.13-alpha-jar-with-dependencies.jar &
35+
java -jar mycat2/target/mycat2-1.13-beta-jar-with-dependencies.jar &
3636
sleep 5s
3737
mvn test
3838

Diff for: .github/workflows/pr-validation-main-test.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
- name: test
3333
run: |
3434
mvn -B package -Dmaven.test.skip=true
35-
java -jar mycat2/target/mycat2-1.13-alpha-jar-with-dependencies.jar &
35+
java -jar mycat2/target/mycat2-1.13-beta-jar-with-dependencies.jar &
3636
sleep 5s
3737
mvn test
3838

Diff for: calcite/pom.xml

+3-3
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>parent</artifactId>
77
<groupId>io.mycat</groupId>
8-
<version>1.13-alpha</version>
8+
<version>1.13-beta</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111
<artifactId>calcite</artifactId>
@@ -89,7 +89,7 @@
8989
<dependency>
9090
<groupId>io.mycat</groupId>
9191
<artifactId>linq4j</artifactId>
92-
<version>1.13-alpha</version>
92+
<version>1.13-beta</version>
9393
</dependency>
9494
<dependency>
9595
<groupId>com.fasterxml.jackson.core</groupId>
@@ -432,7 +432,7 @@
432432
<dependency>
433433
<groupId>io.mycat</groupId>
434434
<artifactId>common</artifactId>
435-
<version>1.13-alpha</version>
435+
<version>1.13-beta</version>
436436
</dependency>
437437
</dependencies>
438438
<repositories>

Diff for: common/pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>parent</artifactId>
77
<groupId>io.mycat</groupId>
8-
<version>1.3-beta</version>
8+
<version>1.13-beta</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

@@ -15,7 +15,7 @@
1515
<dependency>
1616
<groupId>io.mycat</groupId>
1717
<artifactId>config</artifactId>
18-
<version>1.3-beta</version>
18+
<version>1.13-beta</version>
1919
</dependency>
2020
<!-- https://mvnrepository.com/artifact/joda-time/joda-time -->
2121
<dependency>

Diff for: config/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>io.mycat</groupId>
77
<artifactId>parent</artifactId>
8-
<version>1.3-beta</version>
8+
<version>1.13-beta</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

Diff for: datasource/pom.xml

+5-5
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>parent</artifactId>
77
<groupId>io.mycat</groupId>
8-
<version>1.3-beta</version>
8+
<version>1.13-beta</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

@@ -15,22 +15,22 @@
1515
<dependency>
1616
<groupId>io.mycat</groupId>
1717
<artifactId>config</artifactId>
18-
<version>1.3-beta</version>
18+
<version>1.13-beta</version>
1919
</dependency>
2020
<dependency>
2121
<groupId>io.mycat</groupId>
2222
<artifactId>common</artifactId>
23-
<version>1.3-beta</version>
23+
<version>1.13-beta</version>
2424
</dependency>
2525
<dependency>
2626
<groupId>io.mycat</groupId>
2727
<artifactId>plug</artifactId>
28-
<version>1.3-beta</version>
28+
<version>1.13-beta</version>
2929
</dependency>
3030
<dependency>
3131
<groupId>io.mycat</groupId>
3232
<artifactId>replica</artifactId>
33-
<version>1.3-beta</version>
33+
<version>1.13-beta</version>
3434
</dependency>
3535
<dependency>
3636
<groupId>com.zaxxer</groupId>

Diff for: example/pom.xml

+3-3
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>parent</artifactId>
77
<groupId>io.mycat</groupId>
8-
<version>1.3-beta</version>
8+
<version>1.13-beta</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

@@ -58,13 +58,13 @@
5858
<dependency>
5959
<groupId>io.mycat</groupId>
6060
<artifactId>router</artifactId>
61-
<version>1.3-beta</version>
61+
<version>1.13-beta</version>
6262
<scope>test</scope>
6363
</dependency>
6464
<dependency>
6565
<groupId>io.mycat</groupId>
6666
<artifactId>mycat2</artifactId>
67-
<version>1.3-beta</version>
67+
<version>1.13-beta</version>
6868
</dependency>
6969
<dependency>
7070
<groupId>com.github.stephenc.jcip</groupId>

Diff for: hbt/pom.xml

+7-7
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>parent</artifactId>
77
<groupId>io.mycat</groupId>
8-
<version>1.3-beta</version>
8+
<version>1.13-beta</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

@@ -21,27 +21,27 @@
2121
<dependency>
2222
<groupId>io.mycat</groupId>
2323
<artifactId>calcite</artifactId>
24-
<version>1.3-beta</version>
24+
<version>1.13-beta</version>
2525
</dependency>
2626
<dependency>
2727
<groupId>io.mycat</groupId>
2828
<artifactId>common</artifactId>
29-
<version>1.3-beta</version>
29+
<version>1.13-beta</version>
3030
</dependency>
3131
<dependency>
3232
<groupId>io.mycat</groupId>
3333
<artifactId>plug</artifactId>
34-
<version>1.3-beta</version>
34+
<version>1.13-beta</version>
3535
</dependency>
3636
<dependency>
3737
<groupId>io.mycat</groupId>
3838
<artifactId>datasource</artifactId>
39-
<version>1.3-beta</version>
39+
<version>1.13-beta</version>
4040
</dependency>
4141
<dependency>
4242
<groupId>io.mycat</groupId>
4343
<artifactId>config</artifactId>
44-
<version>1.3-beta</version>
44+
<version>1.13-beta</version>
4545
</dependency>
4646
<dependency>
4747
<groupId>com.alibaba.fastsql</groupId>
@@ -94,7 +94,7 @@
9494
<dependency>
9595
<groupId>io.mycat</groupId>
9696
<artifactId>linq4j</artifactId>
97-
<version>1.3-beta</version>
97+
<version>1.13-beta</version>
9898
<scope>compile</scope>
9999
</dependency>
100100
<dependency>

Diff for: linq4j/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>parent</artifactId>
77
<groupId>io.mycat</groupId>
8-
<version>1.3-beta</version>
8+
<version>1.13-beta</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

Diff for: mycat2/pom.xml

+5-5
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>parent</artifactId>
77
<groupId>io.mycat</groupId>
8-
<version>1.3-beta</version>
8+
<version>1.13-beta</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111
<packaging>jar</packaging>
@@ -53,7 +53,7 @@
5353
<dependency>
5454
<groupId>io.mycat</groupId>
5555
<artifactId>proxy</artifactId>
56-
<version>1.3-beta</version>
56+
<version>1.13-beta</version>
5757
<exclusions>
5858
<exclusion>
5959
<artifactId>druid</artifactId>
@@ -64,7 +64,7 @@
6464
<dependency>
6565
<groupId>io.mycat</groupId>
6666
<artifactId>common</artifactId>
67-
<version>1.3-beta</version>
67+
<version>1.13-beta</version>
6868
<exclusions>
6969
<exclusion>
7070
<artifactId>log4j</artifactId>
@@ -87,7 +87,7 @@
8787
<dependency>
8888
<groupId>io.mycat</groupId>
8989
<artifactId>datasource</artifactId>
90-
<version>1.3-beta</version>
90+
<version>1.13-beta</version>
9191
<exclusions>
9292
<exclusion>
9393
<artifactId>slf4j-api</artifactId>
@@ -121,7 +121,7 @@
121121
<dependency>
122122
<groupId>io.mycat</groupId>
123123
<artifactId>hbt</artifactId>
124-
<version>1.3-beta</version>
124+
<version>1.13-beta</version>
125125
<exclusions>
126126
<exclusion>
127127
<artifactId>commons-logging</artifactId>

Diff for: plug/pom.xml

+3-3
Original file line numberDiff line numberDiff line change
@@ -5,20 +5,20 @@
55
<parent>
66
<artifactId>parent</artifactId>
77
<groupId>io.mycat</groupId>
8-
<version>1.3-beta</version>
8+
<version>1.13-beta</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111
<artifactId>plug</artifactId>
1212
<dependencies>
1313
<dependency>
1414
<groupId>io.mycat</groupId>
1515
<artifactId>router</artifactId>
16-
<version>1.3-beta</version>
16+
<version>1.13-beta</version>
1717
</dependency>
1818
<dependency>
1919
<groupId>io.mycat</groupId>
2020
<artifactId>common</artifactId>
21-
<version>1.3-beta</version>
21+
<version>1.13-beta</version>
2222
</dependency>
2323
<!-- https://mvnrepository.com/artifact/com.imadcn.framework/idworker -->
2424
<dependency>

Diff for: pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<modelVersion>4.0.0</modelVersion>
55
<groupId>io.mycat</groupId>
66
<artifactId>parent</artifactId>
7-
<version>1.3-beta</version>
7+
<version>1.13-beta</version>
88
<modules>
99
<module>config</module>
1010
<module>proxy</module>

Diff for: proxy/pom.xml

+7-7
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>io.mycat</groupId>
77
<artifactId>parent</artifactId>
8-
<version>1.3-beta</version>
8+
<version>1.13-beta</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

@@ -15,32 +15,32 @@
1515
<dependency>
1616
<groupId>io.mycat</groupId>
1717
<artifactId>config</artifactId>
18-
<version>1.3-beta</version>
18+
<version>1.13-beta</version>
1919
</dependency>
2020
<dependency>
2121
<groupId>io.mycat</groupId>
2222
<artifactId>plug</artifactId>
23-
<version>1.3-beta</version>
23+
<version>1.13-beta</version>
2424
</dependency>
2525
<dependency>
2626
<groupId>io.mycat</groupId>
2727
<artifactId>router</artifactId>
28-
<version>1.3-beta</version>
28+
<version>1.13-beta</version>
2929
</dependency>
3030
<dependency>
3131
<groupId>io.mycat</groupId>
3232
<artifactId>common</artifactId>
33-
<version>1.3-beta</version>
33+
<version>1.13-beta</version>
3434
</dependency>
3535
<dependency>
3636
<groupId>io.mycat</groupId>
3737
<artifactId>replica</artifactId>
38-
<version>1.3-beta</version>
38+
<version>1.13-beta</version>
3939
</dependency>
4040
<dependency>
4141
<groupId>io.mycat</groupId>
4242
<artifactId>datasource</artifactId>
43-
<version>1.3-beta</version>
43+
<version>1.13-beta</version>
4444
</dependency>
4545
</dependencies>
4646

Diff for: replica/pom.xml

+3-3
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>parent</artifactId>
77
<groupId>io.mycat</groupId>
8-
<version>1.3-beta</version>
8+
<version>1.13-beta</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

@@ -15,12 +15,12 @@
1515
<dependency>
1616
<groupId>io.mycat</groupId>
1717
<artifactId>common</artifactId>
18-
<version>1.3-beta</version>
18+
<version>1.13-beta</version>
1919
</dependency>
2020
<dependency>
2121
<groupId>io.mycat</groupId>
2222
<artifactId>plug</artifactId>
23-
<version>1.3-beta</version>
23+
<version>1.13-beta</version>
2424
</dependency>
2525
</dependencies>
2626
</project>

Diff for: router/pom.xml

+3-3
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>parent</artifactId>
77
<groupId>io.mycat</groupId>
8-
<version>1.3-beta</version>
8+
<version>1.13-beta</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

@@ -28,12 +28,12 @@
2828
<dependency>
2929
<groupId>io.mycat</groupId>
3030
<artifactId>config</artifactId>
31-
<version>1.3-beta</version>
31+
<version>1.13-beta</version>
3232
</dependency>
3333
<dependency>
3434
<groupId>io.mycat</groupId>
3535
<artifactId>common</artifactId>
36-
<version>1.3-beta</version>
36+
<version>1.13-beta</version>
3737
</dependency>
3838
<!-- https://mvnrepository.com/artifact/com.yevdo/jwildcard -->
3939
<dependency>

Diff for: statistic/pom.xml

+3-3
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>parent</artifactId>
77
<groupId>io.mycat</groupId>
8-
<version>1.3-beta</version>
8+
<version>1.13-beta</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

@@ -14,13 +14,13 @@
1414
<dependency>
1515
<groupId>io.mycat</groupId>
1616
<artifactId>config</artifactId>
17-
<version>1.3-beta</version>
17+
<version>1.13-beta</version>
1818
<scope>compile</scope>
1919
</dependency>
2020
<dependency>
2121
<groupId>io.mycat</groupId>
2222
<artifactId>hbt</artifactId>
23-
<version>1.3-beta</version>
23+
<version>1.13-beta</version>
2424
<scope>compile</scope>
2525
</dependency>
2626
</dependencies>

0 commit comments

Comments
 (0)