diff --git a/README.md b/README.md
index 9841e0f33222a5f75510907dea28a1805880e60f..b1b53f111719e183ed15434539436f647c03ebc2 100644
--- a/README.md
+++ b/README.md
@@ -7,7 +7,7 @@ Introduction
The graph algorithm library running on Kunpeng processors is an acceleration library that provides a rich set of high-level tools for graph algorithms. It is developed based on original APIs of Apache [Spark 2.3.2](https://github.com/apache/spark/tree/v2.3.2). The acceleration library greatly improves the computing power in big data scenarios. Additionally, it provides multiple APIs in addition to the original APIs if the Apache Spark graph library.
-The library provides 23 graph algorithms: triangle count (TC), weak clique enumeration (WCE), maximal clique enumeration (MCE), modualrity, closeness, cycle detection (CD), label propagation algorithm (LPA), Louvain, PageRank, IncPageRank, Weighted PageRank, shortest-paths, strongly connected components (SCC), connected components (CC), K-core decomposition (KCore), degree centrality (Degree), breadth-first-search (BFS), ClusteringCoefficient, TrustRank, PersonalizedPageRank, Betweenness, Node2Vec and SubgraphMatching. You can find the latest documentation on the project web page. This README file contains only basic setup instructions.
+The library provides 24 graph algorithms: triangle count (TC), weak clique enumeration (WCE), maximal clique enumeration (MCE), modualrity, closeness, cycle detection (CD), label propagation algorithm (LPA), Louvain, PageRank, IncPageRank, Weighted PageRank, shortest-paths, strongly connected components (SCC), connected components (CC), K-core decomposition (KCore), degree centrality (Degree), breadth-first-search (BFS), ClusteringCoefficient, TrustRank, PersonalizedPageRank, Betweenness, Node2Vec, SubgraphMatching and TrillionPageRank. You can find the latest documentation on the project web page. This README file contains only basic setup instructions.
@@ -20,11 +20,11 @@ Building
mvn package
- Obtain "boostkit-graph-acc_2.11-2.1.0-Spark2.3.2.jar" from the "Spark-graph-algo-lib/graph-accelerator/target/" directory
+ Obtain "boostkit-graph-acc_2.11-2.2.0-Spark2.3.2.jar" from the "Spark-graph-algo-lib/graph-accelerator/target/" directory
- Obtain "boostkit-graph-core_2.11-2.1.0-Spark2.3.2.jar" from the "Spark-graph-algo-lib/graph-core/target/" directory
+ Obtain "boostkit-graph-core_2.11-2.2.0-Spark2.3.2.jar" from the "Spark-graph-algo-lib/graph-core/target/" directory
- Obtain "boostkit-graph-kernel-clinet_2.11-2.1.0-Spark2.3.2.jar" from the "Spark-graph-algo-lib/graph-kernel/target/" directory
+ Obtain "boostkit-graph-kernel-clinet_2.11-2.2.0-Spark2.3.2.jar" from the "Spark-graph-algo-lib/graph-kernel/target/" directory
diff --git a/graph-accelerator/pom.xml b/graph-accelerator/pom.xml
index 8294c14cbfad5b77569696a731d804b4d4805356..265898c20053bdd25d223cc47c494a8b20351016 100644
--- a/graph-accelerator/pom.xml
+++ b/graph-accelerator/pom.xml
@@ -2,13 +2,13 @@
org.apache.spark
boostkit-graph
- 2.1.0
+ 2.2.0
4.0.0
org.apache.spark.graphx.lib
boostkit-graph-acc_2.11
- 2.1.0
+ 2.2.0
${project.artifactId}
Spark graph algo accelerator
@@ -21,7 +21,7 @@
org.apache.spark.graphx.lib
boostkit-graph-kernel-client_2.11
- 2.1.0
+ 2.2.0
${spark.version}
compile
diff --git a/graph-core/pom.xml b/graph-core/pom.xml
index 845a7111a1a173ec2053420dad08bd1acaed89e8..d8036e1a52bb91e9143aef65de40fe60289f0945 100644
--- a/graph-core/pom.xml
+++ b/graph-core/pom.xml
@@ -2,13 +2,13 @@
org.apache.spark
boostkit-graph
- 2.1.0
+ 2.2.0
4.0.0
boostkit-graph-core_2.11
- 2.1.0
+ 2.2.0
${project.artifactId}
Spark graph core
diff --git a/graph-kernel/pom.xml b/graph-kernel/pom.xml
index ebaec9bf39fa46910b14645209a20cc97c118dc2..0304922fb81b1fd3b840ec604d04ee6f49141771 100644
--- a/graph-kernel/pom.xml
+++ b/graph-kernel/pom.xml
@@ -2,12 +2,12 @@
org.apache.spark
boostkit-graph
- 2.1.0
+ 2.2.0
4.0.0
org.apache.spark.graphx.lib
boostkit-graph-kernel-client_2.11
- 2.1.0
+ 2.2.0
${project.artifactId}
Spark graph algo client
2020
diff --git a/pom.xml b/pom.xml
index f58e1321c88649cd7b633a80433bd7706317b178..0b326e9e278192a66ab02c492ffd483433cd3888 100644
--- a/pom.xml
+++ b/pom.xml
@@ -3,7 +3,7 @@
4.0.0
org.apache.spark
boostkit-graph
- 2.1.0
+ 2.2.0
${project.artifactId}
Spark graph algo
2020