Skip to content

Commit

Permalink
Release version 0.3.5
Browse files Browse the repository at this point in the history
Fixes #202
  • Loading branch information
szarnyasg committed Nov 27, 2021
1 parent b077422 commit 09273be
Show file tree
Hide file tree
Showing 10 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion common/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>com.ldbc.snb</groupId>
<artifactId>implementations</artifactId>
<version>0.3.5-SNAPSHOT</version>
<version>0.3.5</version>
</parent>

<artifactId>common</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion cypher/driver/benchmark.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ set -o pipefail
cd "$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
cd ..

java -cp target/cypher-0.3.5-SNAPSHOT.jar com.ldbc.driver.Client -P driver/benchmark.properties
java -cp target/cypher-0.3.5.jar com.ldbc.driver.Client -P driver/benchmark.properties
2 changes: 1 addition & 1 deletion cypher/driver/create-validation-parameters.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ set -o pipefail
cd "$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
cd ..

java -cp target/cypher-0.3.5-SNAPSHOT.jar com.ldbc.driver.Client -P driver/create-validation-parameters.properties
java -cp target/cypher-0.3.5.jar com.ldbc.driver.Client -P driver/create-validation-parameters.properties
2 changes: 1 addition & 1 deletion cypher/driver/validate.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ set -o pipefail
cd "$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
cd ..

java -cp target/cypher-0.3.5-SNAPSHOT.jar com.ldbc.driver.Client -P driver/validate.properties
java -cp target/cypher-0.3.5.jar com.ldbc.driver.Client -P driver/validate.properties
4 changes: 2 additions & 2 deletions cypher/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>com.ldbc.snb</groupId>
<artifactId>implementations</artifactId>
<version>0.3.5-SNAPSHOT</version>
<version>0.3.5</version>
</parent>

<artifactId>cypher</artifactId>
Expand All @@ -16,7 +16,7 @@
<dependency>
<groupId>com.ldbc.snb</groupId>
<artifactId>common</artifactId>
<version>0.3.5-SNAPSHOT</version>
<version>0.3.5</version>
</dependency>
<dependency>
<groupId>org.neo4j.driver</groupId>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.ldbc.snb</groupId>
<artifactId>implementations</artifactId>
<version>0.3.5-SNAPSHOT</version>
<version>0.3.5</version>
<packaging>pom</packaging>

<properties>
Expand Down
2 changes: 1 addition & 1 deletion postgres/driver/benchmark.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ set -o pipefail
cd "$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
cd ..

java -cp target/postgres-0.3.5-SNAPSHOT.jar com.ldbc.driver.Client -P driver/benchmark.properties
java -cp target/postgres-0.3.5.jar com.ldbc.driver.Client -P driver/benchmark.properties
2 changes: 1 addition & 1 deletion postgres/driver/create-validation-parameters.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ set -o pipefail
cd "$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
cd ..

java -cp target/postgres-0.3.5-SNAPSHOT.jar com.ldbc.driver.Client -P driver/create-validation-parameters.properties
java -cp target/postgres-0.3.5.jar com.ldbc.driver.Client -P driver/create-validation-parameters.properties
2 changes: 1 addition & 1 deletion postgres/driver/validate.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ set -o pipefail
cd "$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
cd ..

java -cp target/postgres-0.3.5-SNAPSHOT.jar com.ldbc.driver.Client -P driver/validate.properties
java -cp target/postgres-0.3.5.jar com.ldbc.driver.Client -P driver/validate.properties
4 changes: 2 additions & 2 deletions postgres/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>com.ldbc.snb</groupId>
<artifactId>implementations</artifactId>
<version>0.3.5-SNAPSHOT</version>
<version>0.3.5</version>
</parent>

<artifactId>postgres</artifactId>
Expand All @@ -16,7 +16,7 @@
<dependency>
<groupId>com.ldbc.snb</groupId>
<artifactId>common</artifactId>
<version>0.3.5-SNAPSHOT</version>
<version>0.3.5</version>
</dependency>
<dependency>
<groupId>org.postgresql</groupId>
Expand Down

0 comments on commit 09273be

Please sign in to comment.