Skip to content

Commit c410297

Browse files
author
Vladimir Ilyin
committed
Release 0.9.10
Signed-off-by: Vladimir Ilyin <vladimir.ilyin@neueda.com>
1 parent 1ff473e commit c410297

File tree

5 files changed

+12
-12
lines changed

5 files changed

+12
-12
lines changed

tinkerpop/cypher-gremlin-console-plugin/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ The plugin and its dependencies can be automatically downloaded and installed in
2424

2525
1. Install Gremlin Console Cypher plugin:
2626
```
27-
gremlin> :install org.opencypher.gremlin cypher-gremlin-console-plugin 0.9.9
28-
==>Loaded: [org.opencypher.gremlin, cypher-gremlin-console-plugin, 0.9.9] - restart the console to use [opencypher.gremlin]
27+
gremlin> :install org.opencypher.gremlin cypher-gremlin-console-plugin 0.9.10
28+
==>Loaded: [org.opencypher.gremlin, cypher-gremlin-console-plugin, 0.9.10] - restart the console to use [opencypher.gremlin]
2929
```
3030

3131
1. Restart Gremlin Console

tinkerpop/cypher-gremlin-neo4j-driver/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,15 +19,15 @@ To add a dependency using Maven:
1919
<dependency>
2020
<groupId>org.opencypher.gremlin</groupId>
2121
<artifactId>cypher-gremlin-neo4j-driver</artifactId>
22-
<version>0.9.9</version>
22+
<version>0.9.10</version>
2323
</dependency>
2424
```
2525

2626
To add a dependency using Gradle:
2727

2828
```
2929
dependencies {
30-
compile 'org.opencypher.gremlin:cypher-gremlin-neo4j-driver:0.9.9'
30+
compile 'org.opencypher.gremlin:cypher-gremlin-neo4j-driver:0.9.10'
3131
}
3232
```
3333

tinkerpop/cypher-gremlin-server-client/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,15 @@ To add a dependency using Maven:
1414
<dependency>
1515
<groupId>org.opencypher.gremlin</groupId>
1616
<artifactId>cypher-gremlin-server-client</artifactId>
17-
<version>0.9.9</version>
17+
<version>0.9.10</version>
1818
</dependency>
1919
```
2020

2121
To add a dependency using Gradle:
2222

2323
```
2424
dependencies {
25-
compile 'org.opencypher.gremlin:cypher-gremlin-server-client:0.9.9'
25+
compile 'org.opencypher.gremlin:cypher-gremlin-server-client:0.9.10'
2626
}
2727
```
2828

@@ -113,7 +113,7 @@ String cypher = "MATCH (p:person) WHERE p.age > 25 RETURN p.name";
113113
List<Map<String, Object>> results = cypherGremlinClient.submit(cypher).all();
114114
```
115115

116-
Consult the [Javadoc](https://opencypher.github.io/cypher-for-gremlin/api/0.9.9/java/org/opencypher/gremlin/client/package-summary.html) for more information.
116+
Consult the [Javadoc](https://opencypher.github.io/cypher-for-gremlin/api/0.9.10/java/org/opencypher/gremlin/client/package-summary.html) for more information.
117117

118118
## Neo4j driver-like API
119119

tinkerpop/cypher-gremlin-server-plugin/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ The plugin and its dependencies can be automatically downloaded and installed in
1717

1818
Run `bin/gremlin-server.sh` with `install` switch and supply the Maven coordinates of the plugin:
1919
```sh
20-
bin/gremlin-server.sh install org.opencypher.gremlin cypher-gremlin-server-plugin 0.9.9
21-
Installing dependency org.opencypher.gremlin cypher-gremlin-server-plugin 0.9.9
20+
bin/gremlin-server.sh install org.opencypher.gremlin cypher-gremlin-server-plugin 0.9.10
21+
Installing dependency org.opencypher.gremlin cypher-gremlin-server-plugin 0.9.10
2222
...
2323
```
2424

translation/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,15 @@ To add a dependency using Maven:
1515
<dependency>
1616
<groupId>org.opencypher.gremlin</groupId>
1717
<artifactId>translation</artifactId>
18-
<version>0.9.9</version>
18+
<version>0.9.10</version>
1919
</dependency>
2020
```
2121

2222
To add a dependency using Gradle:
2323

2424
```
2525
dependencies {
26-
compile 'org.opencypher.gremlin:translation:0.9.9'
26+
compile 'org.opencypher.gremlin:translation:0.9.10'
2727
}
2828
```
2929

@@ -100,7 +100,7 @@ Translator.builder()
100100
.build();
101101
```
102102

103-
Consult the [Javadoc](https://opencypher.github.io/cypher-for-gremlin/api/0.9.9/java/org/opencypher/gremlin/translation/package-summary.html) for more information.
103+
Consult the [Javadoc](https://opencypher.github.io/cypher-for-gremlin/api/0.9.10/java/org/opencypher/gremlin/translation/package-summary.html) for more information.
104104

105105
## Running Cypher
106106

0 commit comments

Comments
 (0)