Skip to content

Commit 4236883

Browse files
committed
Release 0.9.11
Signed-off-by: Dwitry <dwitry@users.noreply.github.com>
1 parent 1f13ba2 commit 4236883

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.10
28-
==>Loaded: [org.opencypher.gremlin, cypher-gremlin-console-plugin, 0.9.10] - restart the console to use [opencypher.gremlin]
27+
gremlin> :install org.opencypher.gremlin cypher-gremlin-console-plugin 0.9.11
28+
==>Loaded: [org.opencypher.gremlin, cypher-gremlin-console-plugin, 0.9.11] - 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.10</version>
22+
<version>0.9.11</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.10'
30+
compile 'org.opencypher.gremlin:cypher-gremlin-neo4j-driver:0.9.11'
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.10</version>
17+
<version>0.9.11</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.10'
25+
compile 'org.opencypher.gremlin:cypher-gremlin-server-client:0.9.11'
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.10/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.11/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
@@ -20,8 +20,8 @@ The plugin and its dependencies can be automatically downloaded and installed in
2020

2121
Run `bin/gremlin-server.sh` with `install` switch and supply the Maven coordinates of the plugin:
2222
```sh
23-
bin/gremlin-server.sh install org.opencypher.gremlin cypher-gremlin-server-plugin 0.9.10
24-
Installing dependency org.opencypher.gremlin cypher-gremlin-server-plugin 0.9.10
23+
bin/gremlin-server.sh install org.opencypher.gremlin cypher-gremlin-server-plugin 0.9.11
24+
Installing dependency org.opencypher.gremlin cypher-gremlin-server-plugin 0.9.11
2525
...
2626
```
2727

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.10</version>
18+
<version>0.9.11</version>
1919
</dependency>
2020
```
2121

2222
To add a dependency using Gradle:
2323

2424
```
2525
dependencies {
26-
compile 'org.opencypher.gremlin:translation:0.9.10'
26+
compile 'org.opencypher.gremlin:translation:0.9.11'
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.10/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.11/java/org/opencypher/gremlin/translation/package-summary.html) for more information.
104104

105105
## Running Cypher
106106

0 commit comments

Comments
 (0)