You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tinkerpop.apache.org by ok...@apache.org on 2016/05/03 16:22:01 UTC

[04/18] incubator-tinkerpop git commit: Updated changelog.

Updated changelog.


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

Branch: refs/heads/TINKERPOP-1279
Commit: 3ce732a3e7113ea707dc39755c2fa2f06a5682b3
Parents: 1ed7043
Author: Stephen Mallette <sp...@genoprime.com>
Authored: Thu Apr 28 14:08:44 2016 -0400
Committer: Stephen Mallette <sp...@genoprime.com>
Committed: Thu Apr 28 14:08:44 2016 -0400

----------------------------------------------------------------------
 CHANGELOG.asciidoc                                             | 6 ++++++
 .../groovy/org/apache/tinkerpop/gremlin/console/Console.groovy | 2 +-
 2 files changed, 7 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/blob/3ce732a3/CHANGELOG.asciidoc
----------------------------------------------------------------------
diff --git a/CHANGELOG.asciidoc b/CHANGELOG.asciidoc
index 6eb53da..6e3a1d5 100644
--- a/CHANGELOG.asciidoc
+++ b/CHANGELOG.asciidoc
@@ -26,6 +26,12 @@ image::https://raw.githubusercontent.com/apache/incubator-tinkerpop/master/docs/
 TinkerPop 3.2.1 (NOT OFFICIALLY RELEASED YET)
 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 
+* Added support for interactive (`-i`) and execute (`-e`) modes for Gremlin Console.
+* Displayed line numbers for script execution failures of `-e` and `-i`.
+* Improved messaging around script execution errors in Gremlin Console.
+* Added "help" support to Gremlin Console with the `-h` flag.
+* Added options to better control verbosity of Gremlin Console output with `-Q`, `-V` and `-D`.
+* Deprecated the `ScriptExecutor` - the `-e` option to `gremlin.sh` is now handled by `Console`.
 * Added a Gremlin language variant tutorial teaching people how to embed Gremlin in a host programming language.
 
 [[release-3.2.0-incubating]]

http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/blob/3ce732a3/gremlin-console/src/main/groovy/org/apache/tinkerpop/gremlin/console/Console.groovy
----------------------------------------------------------------------
diff --git a/gremlin-console/src/main/groovy/org/apache/tinkerpop/gremlin/console/Console.groovy b/gremlin-console/src/main/groovy/org/apache/tinkerpop/gremlin/console/Console.groovy
index 21ebc64..6e68d05 100644
--- a/gremlin-console/src/main/groovy/org/apache/tinkerpop/gremlin/console/Console.groovy
+++ b/gremlin-console/src/main/groovy/org/apache/tinkerpop/gremlin/console/Console.groovy
@@ -405,4 +405,4 @@ class Console {
                 (options.is != null && options.is ? options.is : null)
         new Console(io, scriptAndArgs, !options.e)
     }
-}
+}
\ No newline at end of file