Skip to content

Commit 0f81ad2

Browse files
authored
update version to 3.0.0 (#48)
1 parent 9aeb3ca commit 0f81ad2

File tree

5 files changed

+16
-15
lines changed

5 files changed

+16
-15
lines changed

README.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ Add the dependency to your pom.xml.
2424
<dependency>
2525
<groupId>com.vesoft</groupId>
2626
<artifactId>nebula-flink-connector</artifactId>
27-
<version>3.0-SNAPSHOT</version>
27+
<version>3.0.0</version>
2828
</dependency>
2929
```
3030

@@ -73,4 +73,5 @@ There are the version correspondence between Nebula Flink Connector and Nebula:
7373
| 2.0.0 | 2.0.0, 2.0.1 |
7474
| 2.5.0 | 2.5.0, 2.5.1 |
7575
| 2.6.0 | 2.6.0 |
76+
| 3.0.0 | 3.0.0 |
7677
| 3.0-SNAPSHOT | nightly |

connector/pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,15 @@
55
<parent>
66
<artifactId>nebula-flink</artifactId>
77
<groupId>com.vesoft</groupId>
8-
<version>3.0-SNAPSHOT</version>
8+
<version>3.0.0</version>
99
<relativePath>../pom.xml</relativePath>
1010
</parent>
1111
<modelVersion>4.0.0</modelVersion>
1212

1313
<artifactId>nebula-flink-connector</artifactId>
1414

1515
<properties>
16-
<nebula.version>3.0-SNAPSHOT</nebula.version>
16+
<nebula.version>3.0.0</nebula.version>
1717
<flink.version>1.11.3</flink.version>
1818
<scala.binary.version>2.11</scala.binary.version>
1919
<compiler.source.version>1.8</compiler.source.version>

connector/src/test/resources/docker-compose.yaml

+10-10
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
version: '3.4'
22
services:
33
metad0:
4-
image: vesoft/nebula-metad:nightly
4+
image: vesoft/nebula-metad:v3.0.0
55
environment:
66
USER: root
77
TZ: "${TZ}"
@@ -37,7 +37,7 @@ services:
3737
- SYS_PTRACE
3838

3939
metad1:
40-
image: vesoft/nebula-metad:nightly
40+
image: vesoft/nebula-metad:v3.0.0
4141
environment:
4242
USER: root
4343
TZ: "${TZ}"
@@ -73,7 +73,7 @@ services:
7373
- SYS_PTRACE
7474

7575
metad2:
76-
image: vesoft/nebula-metad:nightly
76+
image: vesoft/nebula-metad:v3.0.0
7777
environment:
7878
USER: root
7979
TZ: "${TZ}"
@@ -109,7 +109,7 @@ services:
109109
- SYS_PTRACE
110110

111111
storaged0:
112-
image: vesoft/nebula-storaged:nightly
112+
image: vesoft/nebula-storaged:v3.0.0
113113
environment:
114114
USER: root
115115
TZ: "${TZ}"
@@ -149,7 +149,7 @@ services:
149149
- SYS_PTRACE
150150

151151
storaged1:
152-
image: vesoft/nebula-storaged:nightly
152+
image: vesoft/nebula-storaged:v3.0.0
153153
environment:
154154
USER: root
155155
TZ: "${TZ}"
@@ -189,7 +189,7 @@ services:
189189
- SYS_PTRACE
190190

191191
storaged2:
192-
image: vesoft/nebula-storaged:nightly
192+
image: vesoft/nebula-storaged:v3.0.0
193193
environment:
194194
USER: root
195195
TZ: "${TZ}"
@@ -229,7 +229,7 @@ services:
229229
- SYS_PTRACE
230230

231231
graphd0:
232-
image: vesoft/nebula-graphd:nightly
232+
image: vesoft/nebula-graphd:v3.0.0
233233
environment:
234234
USER: root
235235
TZ: "${TZ}"
@@ -266,7 +266,7 @@ services:
266266
- SYS_PTRACE
267267

268268
graphd1:
269-
image: vesoft/nebula-graphd:nightly
269+
image: vesoft/nebula-graphd:v3.0.0
270270
environment:
271271
USER: root
272272
TZ: "${TZ}"
@@ -303,7 +303,7 @@ services:
303303
- SYS_PTRACE
304304

305305
graphd2:
306-
image: vesoft/nebula-graphd:nightly
306+
image: vesoft/nebula-graphd:v3.0.0
307307
environment:
308308
USER: root
309309
TZ: "${TZ}"
@@ -340,7 +340,7 @@ services:
340340
- SYS_PTRACE
341341

342342
console:
343-
image: vesoft/nebula-console:nightly
343+
image: vesoft/nebula-console:v3.0.0
344344
entrypoint: ""
345345
command:
346346
- sh

example/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>nebula-flink</artifactId>
77
<groupId>com.vesoft</groupId>
8-
<version>3.0-SNAPSHOT</version>
8+
<version>3.0.0</version>
99
<relativePath>../pom.xml</relativePath>
1010
</parent>
1111
<modelVersion>4.0.0</modelVersion>

pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<groupId>com.vesoft</groupId>
88
<artifactId>nebula-flink</artifactId>
99
<packaging>pom</packaging>
10-
<version>3.0-SNAPSHOT</version>
10+
<version>3.0.0</version>
1111

1212
<modules>
1313
<module>connector</module>

0 commit comments

Comments
 (0)