Skip to content

Commit f8f6302

Browse files
brave-leeJinyLeeChina
and
JinyLeeChina
authored
[Release-for-2.0.9] update version (#14227)
* fix #13760 * pre-209 --------- Co-authored-by: JinyLeeChina <[email protected]>
1 parent 7c73e3f commit f8f6302

File tree

13 files changed

+79
-15
lines changed

13 files changed

+79
-15
lines changed

Diff for: docker/docker-swarm/docker-compose.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ services:
4444
- dolphinscheduler
4545

4646
dolphinscheduler-api:
47-
image: apache/dolphinscheduler:2.0.7
47+
image: apache/dolphinscheduler:2.0.9
4848
command: api-server
4949
ports:
5050
- 12345:12345
@@ -68,7 +68,7 @@ services:
6868
- dolphinscheduler
6969

7070
dolphinscheduler-alert:
71-
image: apache/dolphinscheduler:2.0.7
71+
image: apache/dolphinscheduler:2.0.9
7272
command: alert-server
7373
environment:
7474
TZ: Asia/Shanghai
@@ -87,7 +87,7 @@ services:
8787
- dolphinscheduler
8888

8989
dolphinscheduler-master:
90-
image: apache/dolphinscheduler:2.0.7
90+
image: apache/dolphinscheduler:2.0.9
9191
command: master-server
9292
environment:
9393
TZ: Asia/Shanghai
@@ -108,7 +108,7 @@ services:
108108
- dolphinscheduler
109109

110110
dolphinscheduler-worker:
111-
image: apache/dolphinscheduler:2.0.7
111+
image: apache/dolphinscheduler:2.0.9
112112
command: worker-server
113113
environment:
114114
TZ: Asia/Shanghai

Diff for: docker/docker-swarm/docker-stack.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ services:
4848
replicas: 1
4949

5050
dolphinscheduler-api:
51-
image: apache/dolphinscheduler:2.0.7
51+
image: apache/dolphinscheduler:2.0.9
5252
command: api-server
5353
ports:
5454
- 12345:12345
@@ -71,7 +71,7 @@ services:
7171
replicas: 1
7272

7373
dolphinscheduler-alert:
74-
image: apache/dolphinscheduler:2.0.7
74+
image: apache/dolphinscheduler:2.0.9
7575
command: alert-server
7676
environment:
7777
TZ: Asia/Shanghai
@@ -90,7 +90,7 @@ services:
9090
replicas: 1
9191

9292
dolphinscheduler-master:
93-
image: apache/dolphinscheduler:2.0.7
93+
image: apache/dolphinscheduler:2.0.9
9494
command: master-server
9595
environment:
9696
TZ: Asia/Shanghai
@@ -110,7 +110,7 @@ services:
110110
replicas: 1
111111

112112
dolphinscheduler-worker:
113-
image: apache/dolphinscheduler:2.0.7
113+
image: apache/dolphinscheduler:2.0.9
114114
command: worker-server
115115
environment:
116116
TZ: Asia/Shanghai

Diff for: docker/kubernetes/dolphinscheduler/Chart.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ version: 2.0.3
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: 2.0.7
42+
appVersion: 2.0.9
4343

4444
dependencies:
4545
- name: postgresql

Diff for: docker/kubernetes/dolphinscheduler/values.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ timezone: "Asia/Shanghai"
2323

2424
image:
2525
repository: "apache/dolphinscheduler"
26-
tag: "2.0.7"
26+
tag: "2.0.9"
2727
pullPolicy: "IfNotPresent"
2828
pullSecret: ""
2929

Diff for: dolphinscheduler-dao/src/main/resources/sql/dolphinscheduler_h2.sql

+1-1
Original file line numberDiff line numberDiff line change
@@ -959,7 +959,7 @@ CREATE TABLE t_ds_version
959959
-- Records of t_ds_version
960960
-- ----------------------------
961961
INSERT INTO t_ds_version
962-
VALUES ('1', '2.0.7');
962+
VALUES ('1', '2.0.9');
963963

964964

965965
-- ----------------------------

Diff for: dolphinscheduler-dao/src/main/resources/sql/dolphinscheduler_mysql.sql

+1-1
Original file line numberDiff line numberDiff line change
@@ -946,7 +946,7 @@ CREATE TABLE `t_ds_version` (
946946
-- ----------------------------
947947
-- Records of t_ds_version
948948
-- ----------------------------
949-
INSERT INTO `t_ds_version` VALUES ('1', '2.0.7');
949+
INSERT INTO `t_ds_version` VALUES ('1', '2.0.9');
950950

951951

952952
-- ----------------------------

Diff for: dolphinscheduler-dao/src/main/resources/sql/dolphinscheduler_postgresql.sql

+1-1
Original file line numberDiff line numberDiff line change
@@ -933,7 +933,7 @@ INSERT INTO t_ds_queue(queue_name, queue, create_time, update_time)
933933
VALUES ('default', 'default', '2018-11-29 10:22:33', '2018-11-29 10:22:33');
934934

935935
-- Records of t_ds_queue,default queue name : default
936-
INSERT INTO t_ds_version(version) VALUES ('2.0.7');
936+
INSERT INTO t_ds_version(version) VALUES ('2.0.9');
937937

938938
--
939939
-- Table structure for table t_ds_plugin_define
+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.0.7
1+
2.0.9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
/*
2+
* Licensed to the Apache Software Foundation (ASF) under one or more
3+
* contributor license agreements. See the NOTICE file distributed with
4+
* this work for additional information regarding copyright ownership.
5+
* The ASF licenses this file to You under the Apache License, Version 2.0
6+
* (the "License"); you may not use this file except in compliance with
7+
* the License. You may obtain a copy of the License at
8+
*
9+
* http://www.apache.org/licenses/LICENSE-2.0
10+
*
11+
* Unless required by applicable law or agreed to in writing, software
12+
* distributed under the License is distributed on an "AS IS" BASIS,
13+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14+
* See the License for the specific language governing permissions and
15+
* limitations under the License.
16+
*/
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
/*
2+
* Licensed to the Apache Software Foundation (ASF) under one or more
3+
* contributor license agreements. See the NOTICE file distributed with
4+
* this work for additional information regarding copyright ownership.
5+
* The ASF licenses this file to You under the Apache License, Version 2.0
6+
* (the "License"); you may not use this file except in compliance with
7+
* the License. You may obtain a copy of the License at
8+
*
9+
* http://www.apache.org/licenses/LICENSE-2.0
10+
*
11+
* Unless required by applicable law or agreed to in writing, software
12+
* distributed under the License is distributed on an "AS IS" BASIS,
13+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14+
* See the License for the specific language governing permissions and
15+
* limitations under the License.
16+
*/
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
/*
2+
* Licensed to the Apache Software Foundation (ASF) under one or more
3+
* contributor license agreements. See the NOTICE file distributed with
4+
* this work for additional information regarding copyright ownership.
5+
* The ASF licenses this file to You under the Apache License, Version 2.0
6+
* (the "License"); you may not use this file except in compliance with
7+
* the License. You may obtain a copy of the License at
8+
*
9+
* http://www.apache.org/licenses/LICENSE-2.0
10+
*
11+
* Unless required by applicable law or agreed to in writing, software
12+
* distributed under the License is distributed on an "AS IS" BASIS,
13+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14+
* See the License for the specific language governing permissions and
15+
* limitations under the License.
16+
*/
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
/*
2+
* Licensed to the Apache Software Foundation (ASF) under one or more
3+
* contributor license agreements. See the NOTICE file distributed with
4+
* this work for additional information regarding copyright ownership.
5+
* The ASF licenses this file to You under the Apache License, Version 2.0
6+
* (the "License"); you may not use this file except in compliance with
7+
* the License. You may obtain a copy of the License at
8+
*
9+
* http://www.apache.org/licenses/LICENSE-2.0
10+
*
11+
* Unless required by applicable law or agreed to in writing, software
12+
* distributed under the License is distributed on an "AS IS" BASIS,
13+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14+
* See the License for the specific language governing permissions and
15+
* limitations under the License.
16+
*/

Diff for: dolphinscheduler-python/pydolphinscheduler/setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232

3333
logger = logging.getLogger(__name__)
3434

35-
version = "2.0.7"
35+
version = "2.0.9"
3636

3737
# Start package required
3838
prod = [

0 commit comments

Comments
 (0)