Skip to content

Commit 0722723

Browse files
authored
update version to 3.0.0 (#41)
1 parent 8a3ca95 commit 0722723

File tree

5 files changed

+10
-8
lines changed

5 files changed

+10
-8
lines changed

README-CN.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ nebula-algorithm 是一款基于 [GraphX](https://spark.apache.org/graphx/) 的
3232
$ cd nebula-algorithm
3333
$ mvn clean package -Dgpg.skip -Dmaven.javadoc.skip=true -Dmaven.test.skip=true
3434
```
35-
编译完成后,在 `nebula-algorithm/target` 目录下会生成 `nebula-algorithm-3.0-SNAPSHOT.jar` 。
35+
编译完成后,在 `nebula-algorithm/target` 目录下会生成 `nebula-algorithm-3.0.0.jar` 。
3636
3737
2. 在 Maven 远程仓库下载
3838
https://repo1.maven.org/maven2/com/vesoft/nebula-algorithm/
@@ -48,7 +48,7 @@ nebula-algorithm 是一款基于 [GraphX](https://spark.apache.org/graphx/) 的
4848
* 提交算法任务
4949
5050
```
51-
${SPARK_HOME}/bin/spark-submit --master <mode> --class com.vesoft.nebula.algorithm.Main nebula-algorithm-3.0-SNAPSHOT.jar -p application.conf
51+
${SPARK_HOME}/bin/spark-submit --master <mode> --class com.vesoft.nebula.algorithm.Main nebula-algorithm-3.0.0.jar -p application.conf
5252
```
5353
* 使用限制
5454
@@ -112,6 +112,7 @@ nebula-algorithm 是一款基于 [GraphX](https://spark.apache.org/graphx/) 的
112112
| 2.5.0 | 2.5.0, 2.5.1 |
113113
| 2.6.0 | 2.6.0, 2.6.1 |
114114
| 2.6.2 | 2.6.0, 2.6.1 |
115+
| 3.0.0 | 3.0.0 |
115116
| 3.0-SNAPSHOT | nightly |
116117
117118
## 贡献

README.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ You could submit the entire spark application or invoke algorithms in `lib` libr
3737
$ cd nebula-algorithm
3838
$ mvn clean package -Dgpg.skip -Dmaven.javadoc.skip=true -Dmaven.test.skip=true
3939
```
40-
After the above buiding process, the target file `nebula-algorithm-3.0-SNAPSHOT.jar` will be placed under `nebula-algorithm/target`.
40+
After the above buiding process, the target file `nebula-algorithm-3.0.0.jar` will be placed under `nebula-algorithm/target`.
4141
4242
2. Download from Maven repo
4343
@@ -56,7 +56,7 @@ You could submit the entire spark application or invoke algorithms in `lib` libr
5656
* Submit Spark Application
5757
5858
```
59-
${SPARK_HOME}/bin/spark-submit --master <mode> --class com.vesoft.nebula.algorithm.Main nebula-algorithm-3.0—SNAPSHOT.jar -p application.conf
59+
${SPARK_HOME}/bin/spark-submit --master <mode> --class com.vesoft.nebula.algorithm.Main nebula-algorithm-3.0.0.jar -p application.conf
6060
```
6161
6262
* Limitation
@@ -121,6 +121,7 @@ You could submit the entire spark application or invoke algorithms in `lib` libr
121121
| 2.5.0 | 2.5.0, 2.5.1 |
122122
| 2.6.0 | 2.6.0, 2.6.1 |
123123
| 2.6.1 | 2.6.0, 2.6.1 |
124+
| 3.0.0 | 3.0.0 |
124125
| 3.0-SNAPSHOT | nightly |
125126
126127
## Contribute

example/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>algorithm</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>

nebula-algorithm/pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<artifactId>algorithm</artifactId>
88
<groupId>com.vesoft</groupId>
9-
<version>3.0-SNAPSHOT</version>
9+
<version>3.0.0</version>
1010
<relativePath>../pom.xml</relativePath>
1111
</parent>
1212
<modelVersion>4.0.0</modelVersion>
@@ -15,7 +15,7 @@
1515

1616
<properties>
1717
<spark.version>2.4.4</spark.version>
18-
<nebula.version>3.0-SNAPSHOT</nebula.version>
18+
<nebula.version>3.0.0</nebula.version>
1919
<config.version>1.4.0</config.version>
2020
<scopt.version>3.7.1</scopt.version>
2121
<scalatest.version>3.2.0</scalatest.version>

pom.xml

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

1212
<properties>
1313
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>

0 commit comments

Comments
 (0)