Skip to content

Commit d4b4243

Browse files
authored
Bump to version v0.13.0 (#732)
1 parent 77ad48f commit d4b4243

File tree

9 files changed

+9
-9
lines changed

9 files changed

+9
-9
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -423,7 +423,7 @@ for details about the Scala with Spark library.
423423
> The Java library is under development.
424424
425425
The GraphAr Java library is created with bindings to the C++ library
426-
(currently at version v0.10.0), utilizing
426+
(currently at version v0.12.0), utilizing
427427
[Alibaba-FastFFI](https://github.com/alibaba/fastFFI) for
428428
implementation. See [GraphAr Java Library](./maven-projects/java) for
429429
details about the building of the Java library.

cpp/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ if (CMAKE_VERSION VERSION_GREATER_EQUAL "3.24.0")
3232
endif()
3333

3434
set(GRAPHAR_MAJOR_VERSION 0)
35-
set(GRAPHAR_MINOR_VERSION 12)
35+
set(GRAPHAR_MINOR_VERSION 13)
3636
set(GRAPHAR_PATCH_VERSION 0)
3737
set(GRAPHAR_VERSION ${GRAPHAR_MAJOR_VERSION}.${GRAPHAR_MINOR_VERSION}.${GRAPHAR_PATCH_VERSION})
3838
project(graphar-cpp LANGUAGES C CXX VERSION ${GRAPHAR_VERSION})

maven-projects/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@
7171
<url>https://github.com/apache/graphar</url>
7272
</scm>-->
7373
<properties>
74-
<graphar.version>0.12.0-SNAPSHOT</graphar.version>
74+
<graphar.version>0.13.0-SNAPSHOT</graphar.version>
7575
<spotless-maven-plugin.version>2.20.0</spotless-maven-plugin.version>
7676
</properties>
7777
<modules>

maven-projects/spark/import/neo4j.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
set -eu
2121

2222
cur_dir="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
23-
jar_file="${cur_dir}/../graphar/target/graphar-commons-0.12.0-SNAPSHOT-shaded.jar"
23+
jar_file="${cur_dir}/../graphar/target/graphar-commons-0.13.0-SNAPSHOT-shaded.jar"
2424
conf_path="$(readlink -f $1)"
2525

2626
spark-submit --class org.apache.graphar.importer.Neo4j ${jar_file} \

maven-projects/spark/scripts/run-graphar2nebula.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
set -eu
2121

2222
cur_dir="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
23-
jar_file="${cur_dir}/../graphar/target/graphar-commons-0.12.0-SNAPSHOT-shaded.jar"
23+
jar_file="${cur_dir}/../graphar/target/graphar-commons-0.13.0-SNAPSHOT-shaded.jar"
2424

2525
graph_info_path="${GRAPH_INFO_PATH:-/tmp/graphar/nebula2graphar/basketballplayergraph.graph.yml}"
2626
spark-submit --class org.apache.graphar.example.GraphAr2Nebula ${jar_file} \

maven-projects/spark/scripts/run-graphar2neo4j.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
set -eu
2222

2323
cur_dir="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
24-
jar_file="${cur_dir}/../graphar/target/graphar-commons-0.12.0-SNAPSHOT-shaded.jar"
24+
jar_file="${cur_dir}/../graphar/target/graphar-commons-0.13.0-SNAPSHOT-shaded.jar"
2525

2626
graph_info_path="${GRAPH_INFO_PATH:-/tmp/graphar/neo4j2graphar/MovieGraph.graph.yml}"
2727
spark-submit --class org.apache.graphar.example.GraphAr2Neo4j ${jar_file} \

maven-projects/spark/scripts/run-ldbc-sample2graphar.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
set -eu
2222

2323
cur_dir="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
24-
jar_file="${cur_dir}/../graphar/target/graphar-commons-0.12.0-SNAPSHOT-shaded.jar"
24+
jar_file="${cur_dir}/../graphar/target/graphar-commons-0.13.0-SNAPSHOT-shaded.jar"
2525
person_input_file="${GAR_TEST_DATA}/ldbc_sample/person_0_0.csv"
2626
person_knows_person_input_file="${GAR_TEST_DATA}/ldbc_sample/person_knows_person_0_0.csv"
2727
output_dir="/tmp/graphar/ldbc_sample"

maven-projects/spark/scripts/run-nebula2graphar.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
set -eu
2121

2222
cur_dir="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
23-
jar_file="${cur_dir}/../graphar/target/graphar-commons-0.12.0-SNAPSHOT-shaded.jar"
23+
jar_file="${cur_dir}/../graphar/target/graphar-commons-0.13.0-SNAPSHOT-shaded.jar"
2424

2525
vertex_chunk_size=100
2626
edge_chunk_size=1024

maven-projects/spark/scripts/run-neo4j2graphar.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
set -eu
2222

2323
cur_dir="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
24-
jar_file="${cur_dir}/../graphar/target/graphar-commons-0.12.0-SNAPSHOT-shaded.jar"
24+
jar_file="${cur_dir}/../graphar/target/graphar-commons-0.13.0-SNAPSHOT-shaded.jar"
2525

2626
vertex_chunk_size=100
2727
edge_chunk_size=1024

0 commit comments

Comments
 (0)