Skip to content

Commit 8140126

Browse files
authored
[Chore] Change version to 3.4.0 (#17833)
Signed-off-by: Gallardot <[email protected]>
1 parent 80d8439 commit 8140126

File tree

13 files changed

+315
-307
lines changed

13 files changed

+315
-307
lines changed

NOTICE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Apache DolphinScheduler
2-
Copyright 2019-2024 The Apache Software Foundation
2+
Copyright 2019-2026 The Apache Software Foundation
33

44
This product includes software developed at
55
The Apache Software Foundation (http://www.apache.org/).

deploy/docker/.env

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
# under the License.
1717
#
1818
HUB=apache
19-
TAG=dev
19+
TAG=3.4.0
2020

2121
TZ=Asia/Shanghai
2222
DATABASE=postgresql

deploy/kubernetes/dolphinscheduler/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,11 +35,11 @@ type: application
3535

3636
# This is the chart version. This version number should be incremented each time you make changes
3737
# to the chart and its templates, including the app version.
38-
version: 3.1.0
38+
version: 3.4.0
3939

4040
# This is the version number of the application being deployed. This version number should be
4141
# incremented each time you make changes to the application.
42-
appVersion: 3.1.0
42+
appVersion: 3.4.0
4343

4444
dependencies:
4545
- name: postgresql

deploy/kubernetes/dolphinscheduler/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ image:
3333
# -- Docker image repository for the DolphinScheduler
3434
registry: apache
3535
# -- Docker image version for the DolphinScheduler
36-
tag: latest
36+
tag: 3.4.0
3737
# -- Image pull policy. Options: Always, Never, IfNotPresent
3838
pullPolicy: "IfNotPresent"
3939
# -- Specify a imagePullSecrets

docs/configs/docsdev.js

Lines changed: 296 additions & 296 deletions
Large diffs are not rendered by default.

docs/docs/en/history-versions.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@
44

55
#### Setup instructions, are available for each stable version of Apache DolphinScheduler below:
66

7+
### Versions: 3.4.0
8+
9+
#### Links: [3.4.0 Document](../3.4.0/user_doc/about/introduction.md)
10+
711
### Versions: 3.3.2
812

913
#### Links: [3.3.2 Document](../3.3.2/user_doc/about/introduction.md)

docs/docs/zh/history-versions.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@
44

55
#### 以下是Apache DolphinScheduler每个稳定版本的设置说明。
66

7+
### Versions: 3.4.0
8+
9+
#### Links: [3.4.0 Document](../3.4.0/user_doc/about/introduction.md)
10+
711
### Versions: 3.3.2
812

913
#### Links: [3.3.2 Document](../3.3.2/user_doc/about/introduction.md)

dolphinscheduler-dao/src/main/resources/sql/dolphinscheduler_h2.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1082,7 +1082,7 @@ CREATE TABLE t_ds_version
10821082
-- Records of t_ds_version
10831083
-- ----------------------------
10841084
INSERT INTO t_ds_version
1085-
VALUES ('1', '3.3.0');
1085+
VALUES ('1', '3.4.0');
10861086

10871087

10881088
-- ----------------------------

dolphinscheduler-dao/src/main/resources/sql/dolphinscheduler_mysql.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1064,7 +1064,7 @@ CREATE TABLE `t_ds_version` (
10641064
-- ----------------------------
10651065
-- Records of t_ds_version
10661066
-- ----------------------------
1067-
INSERT IGNORE INTO `t_ds_version` VALUES ('1', '3.3.0');
1067+
INSERT IGNORE INTO `t_ds_version` VALUES ('1', '3.4.0');
10681068

10691069

10701070
-- ----------------------------

dolphinscheduler-dao/src/main/resources/sql/dolphinscheduler_postgresql.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1099,7 +1099,7 @@ INSERT INTO t_ds_queue(queue_name, queue, create_time, update_time)
10991099
VALUES ('default', 'default', '2018-11-29 10:22:33', '2018-11-29 10:22:33');
11001100

11011101
-- Records of t_ds_queue,default queue name : default
1102-
INSERT INTO t_ds_version(version) VALUES ('3.3.0');
1102+
INSERT INTO t_ds_version(version) VALUES ('3.4.0');
11031103

11041104
--
11051105
-- Table structure for table t_ds_plugin_define

0 commit comments

Comments
 (0)