Skip to content

Commit 9e403c9

Browse files
authored
updated tinkerpop version to 3.7.4 (#16)
1 parent 3aa0932 commit 9e403c9

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# ArangoDB TinkerPop Provider
44

5-
ArangoDB TinkerPop Provider is an implementation of the [Apache TinkerPop OLTP Provider](https://tinkerpop.apache.org/docs/3.7.3/dev/provider) API for
5+
ArangoDB TinkerPop Provider is an implementation of the [Apache TinkerPop OLTP Provider](https://tinkerpop.apache.org/docs/3.7.4/dev/provider) API for
66
ArangoDB.
77

88
It allows using the standard TinkerPop API with ArangoDB as the backend storage. It supports creating,
@@ -154,7 +154,7 @@ gremlin> g.V().hasLabel("person").values("name")
154154
==>marko
155155
```
156156

157-
You can find the reference documentation [here](https://tinkerpop.apache.org/docs/3.7.3/reference/#_configuring_2).
157+
You can find the reference documentation [here](https://tinkerpop.apache.org/docs/3.7.4/reference/#_configuring_2).
158158

159159

160160
## Quick Start
@@ -265,7 +265,7 @@ graph.close();
265265
## Configuration
266266

267267
The graph can be created using the methods from `org.apache.tinkerpop.gremlin.structure.util.GraphFactory.open(...)`(
268-
see [javadoc](https://tinkerpop.apache.org/javadocs/3.7.3/full/org/apache/tinkerpop/gremlin/structure/util/GraphFactory.html)).
268+
see [javadoc](https://tinkerpop.apache.org/javadocs/3.7.4/full/org/apache/tinkerpop/gremlin/structure/util/GraphFactory.html)).
269269
These methods accept a configuration file (e.g., YAML or properties file), a Java Map, or an Apache Commons
270270
Configuration object.
271271

@@ -741,7 +741,7 @@ log level for the logger `com.arangodb.internal.net.Communication`.
741741
The [demo](./demo) project contains comprehensive usage examples of this library.
742742

743743
For additional examples, check
744-
the [Gremlin tutorial](https://tinkerpop.apache.org/docs/3.7.3/tutorials/getting-started/).
744+
the [Gremlin tutorial](https://tinkerpop.apache.org/docs/3.7.4/tutorials/getting-started/).
745745

746746
## Acknowledgments
747747

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>org.apache.tinkerpop</groupId>
99
<artifactId>tinkerpop</artifactId>
10-
<version>3.7.3</version>
10+
<version>3.7.4</version>
1111
</parent>
1212

1313
<groupId>com.arangodb</groupId>

test-plugin/java-client/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
<dependency>
1919
<groupId>org.apache.tinkerpop</groupId>
2020
<artifactId>gremlin-driver</artifactId>
21-
<version>3.7.3</version>
21+
<version>3.7.4</version>
2222
</dependency>
2323
<dependency>
2424
<groupId>org.assertj</groupId>

0 commit comments

Comments
 (0)