Skip to content

Commit f9056af

Browse files
committed
TinkerPop 3.8.0 release
1 parent 532d836 commit f9056af

File tree

48 files changed

+49
-50
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

48 files changed

+49
-50
lines changed

docs/src/reference/the-traversal.asciidoc

Lines changed: 0 additions & 1 deletion

gremlin-annotations/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ limitations under the License.
2121
<parent>
2222
<artifactId>tinkerpop</artifactId>
2323
<groupId>org.apache.tinkerpop</groupId>
24-
<version>3.8.0-SNAPSHOT</version>
24+
<version>3.8.0</version>
2525
</parent>
2626

2727
<artifactId>gremlin-annotations</artifactId>

gremlin-archetype/gremlin-archetype-dsl/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ limitations under the License.
2121
<parent>
2222
<groupId>org.apache.tinkerpop</groupId>
2323
<artifactId>gremlin-archetype</artifactId>
24-
<version>3.8.0-SNAPSHOT</version>
24+
<version>3.8.0</version>
2525
</parent>
2626

2727
<artifactId>gremlin-archetype-dsl</artifactId>

gremlin-archetype/gremlin-archetype-server/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ limitations under the License.
2121
<parent>
2222
<groupId>org.apache.tinkerpop</groupId>
2323
<artifactId>gremlin-archetype</artifactId>
24-
<version>3.8.0-SNAPSHOT</version>
24+
<version>3.8.0</version>
2525
</parent>
2626

2727
<artifactId>gremlin-archetype-server</artifactId>

gremlin-archetype/gremlin-archetype-tinkergraph/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ limitations under the License.
2121
<parent>
2222
<groupId>org.apache.tinkerpop</groupId>
2323
<artifactId>gremlin-archetype</artifactId>
24-
<version>3.8.0-SNAPSHOT</version>
24+
<version>3.8.0</version>
2525
</parent>
2626

2727
<artifactId>gremlin-archetype-tinkergraph</artifactId>

gremlin-archetype/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ limitations under the License.
2121
<parent>
2222
<artifactId>tinkerpop</artifactId>
2323
<groupId>org.apache.tinkerpop</groupId>
24-
<version>3.8.0-SNAPSHOT</version>
24+
<version>3.8.0</version>
2525
</parent>
2626

2727
<artifactId>gremlin-archetype</artifactId>

gremlin-console/bin/gremlin.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
../target/apache-tinkerpop-gremlin-console-3.8.0-SNAPSHOT-standalone/bin/gremlin.sh
1+
../target/apache-tinkerpop-gremlin-console-3.8.0-standalone/bin/gremlin.sh

gremlin-console/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ limitations under the License.
2121
<parent>
2222
<artifactId>tinkerpop</artifactId>
2323
<groupId>org.apache.tinkerpop</groupId>
24-
<version>3.8.0-SNAPSHOT</version>
24+
<version>3.8.0</version>
2525
</parent>
2626
<artifactId>gremlin-console</artifactId>
2727
<name>Apache TinkerPop :: Gremlin Console</name>

gremlin-core/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ limitations under the License.
2020
<parent>
2121
<groupId>org.apache.tinkerpop</groupId>
2222
<artifactId>tinkerpop</artifactId>
23-
<version>3.8.0-SNAPSHOT</version>
23+
<version>3.8.0</version>
2424
</parent>
2525
<artifactId>gremlin-core</artifactId>
2626
<name>Apache TinkerPop :: Gremlin Core</name>

gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/process/traversal/strategy/optimization/IdentityRemovalStrategy.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
* @example <pre>
4848
* __.out().identity().count() // is replaced by __.out().count()
4949
* __.in().identity().as("a") // is replaced by __.in().as("a")
50-
* __.identity().as("a").out() // is replaced by __.identity().as("a").out()
50+
* __.identity().as("a").out() // is replaced by __.as("a").out()
5151
* </pre>
5252
*/
5353
public final class IdentityRemovalStrategy extends AbstractTraversalStrategy<TraversalStrategy.OptimizationStrategy> implements TraversalStrategy.OptimizationStrategy {

0 commit comments

Comments
 (0)