You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tinkerpop.apache.org by sp...@apache.org on 2015/04/07 13:25:04 UTC

[22/50] [abbrv] incubator-tinkerpop git commit: minor CHANGELOG update.

minor CHANGELOG update.


Project: http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/commit/6a5cbb55
Tree: http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/tree/6a5cbb55
Diff: http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/diff/6a5cbb55

Branch: refs/heads/variables
Commit: 6a5cbb555a63c1555ac9e53bb35700e7a4d40f9d
Parents: 50d30c6
Author: Marko A. Rodriguez <ok...@gmail.com>
Authored: Mon Apr 6 07:48:42 2015 -0600
Committer: Marko A. Rodriguez <ok...@gmail.com>
Committed: Mon Apr 6 07:48:42 2015 -0600

----------------------------------------------------------------------
 CHANGELOG.asciidoc | 1 -
 1 file changed, 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/blob/6a5cbb55/CHANGELOG.asciidoc
----------------------------------------------------------------------
diff --git a/CHANGELOG.asciidoc b/CHANGELOG.asciidoc
index ee4152d..046c741 100644
--- a/CHANGELOG.asciidoc
+++ b/CHANGELOG.asciidoc
@@ -57,7 +57,6 @@ TinkerPop 3.0.0.M8 (Release Date: April 6, 2015)
 * Refactored the "process" test suite to allow for better test configuration with respect to different `TraversalEngine` implementations.
 * Added `hasNot(traversal)` which is a faster way of doing `has(traversal.count().is(0L))`.
 * `TraversalStrategy.apply(traversal)` is the new method signature as the `TraversalEngine` can be retrieved from the `Traversal`.
-* Added `TimeLimitedStrategy` which injects a `TimeLimit` step at the end of every `Traversal`.
 * `TraversalEngine` is now an interface and provided to the traversal by the graph. `Graph` methods added to set the desired traversal engine to use.
 * Added `count(local)`, `sum(local)`, `max(local)`, `min(local)`, `mean(local)`, `dedup(local)`, `sample(local)` and `range(local)` for operating on the local object (e.g. collection, map, etc.).
 * `TraversalComparator` exists which allows for `order().by(outE().count(),decr)`.