Skip to content

Commit

Permalink
Release 0.9.11
Browse files Browse the repository at this point in the history
Signed-off-by: Dwitry <dwitry@users.noreply.github.com>
  • Loading branch information
dwitry committed Aug 8, 2018
1 parent 1f13ba2 commit 4236883
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 12 deletions.
4 changes: 2 additions & 2 deletions tinkerpop/cypher-gremlin-console-plugin/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ The plugin and its dependencies can be automatically downloaded and installed in

1. Install Gremlin Console Cypher plugin:
```
gremlin> :install org.opencypher.gremlin cypher-gremlin-console-plugin 0.9.10
==>Loaded: [org.opencypher.gremlin, cypher-gremlin-console-plugin, 0.9.10] - restart the console to use [opencypher.gremlin]
gremlin> :install org.opencypher.gremlin cypher-gremlin-console-plugin 0.9.11
==>Loaded: [org.opencypher.gremlin, cypher-gremlin-console-plugin, 0.9.11] - restart the console to use [opencypher.gremlin]
```

1. Restart Gremlin Console
Expand Down
4 changes: 2 additions & 2 deletions tinkerpop/cypher-gremlin-neo4j-driver/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,15 @@ To add a dependency using Maven:
<dependency>
<groupId>org.opencypher.gremlin</groupId>
<artifactId>cypher-gremlin-neo4j-driver</artifactId>
<version>0.9.10</version>
<version>0.9.11</version>
</dependency>
```

To add a dependency using Gradle:

```
dependencies {
compile 'org.opencypher.gremlin:cypher-gremlin-neo4j-driver:0.9.10'
compile 'org.opencypher.gremlin:cypher-gremlin-neo4j-driver:0.9.11'
}
```

Expand Down
6 changes: 3 additions & 3 deletions tinkerpop/cypher-gremlin-server-client/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,15 @@ To add a dependency using Maven:
<dependency>
<groupId>org.opencypher.gremlin</groupId>
<artifactId>cypher-gremlin-server-client</artifactId>
<version>0.9.10</version>
<version>0.9.11</version>
</dependency>
```

To add a dependency using Gradle:

```
dependencies {
compile 'org.opencypher.gremlin:cypher-gremlin-server-client:0.9.10'
compile 'org.opencypher.gremlin:cypher-gremlin-server-client:0.9.11'
}
```

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

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.
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.

## Neo4j driver-like API

Expand Down
4 changes: 2 additions & 2 deletions tinkerpop/cypher-gremlin-server-plugin/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ The plugin and its dependencies can be automatically downloaded and installed in

Run `bin/gremlin-server.sh` with `install` switch and supply the Maven coordinates of the plugin:
```sh
bin/gremlin-server.sh install org.opencypher.gremlin cypher-gremlin-server-plugin 0.9.10
Installing dependency org.opencypher.gremlin cypher-gremlin-server-plugin 0.9.10
bin/gremlin-server.sh install org.opencypher.gremlin cypher-gremlin-server-plugin 0.9.11
Installing dependency org.opencypher.gremlin cypher-gremlin-server-plugin 0.9.11
...
```

Expand Down
6 changes: 3 additions & 3 deletions translation/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,15 @@ To add a dependency using Maven:
<dependency>
<groupId>org.opencypher.gremlin</groupId>
<artifactId>translation</artifactId>
<version>0.9.10</version>
<version>0.9.11</version>
</dependency>
```

To add a dependency using Gradle:

```
dependencies {
compile 'org.opencypher.gremlin:translation:0.9.10'
compile 'org.opencypher.gremlin:translation:0.9.11'
}
```

Expand Down Expand Up @@ -100,7 +100,7 @@ Translator.builder()
.build();
```

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.
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.

## Running Cypher

Expand Down

0 comments on commit 4236883

Please sign in to comment.