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 2018/09/18 16:58:34 UTC

tinkerpop git commit: Updated doc formatting and included 3.4.x in index CTR

Repository: tinkerpop
Updated Branches:
  refs/heads/master d1ed996bc -> da3c601d2


Updated doc formatting and included 3.4.x in index CTR


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

Branch: refs/heads/master
Commit: da3c601d26cba1770df7e000e0f05a36e88f3d32
Parents: d1ed996
Author: Stephen Mallette <sp...@genoprime.com>
Authored: Tue Sep 18 12:58:14 2018 -0400
Committer: Stephen Mallette <sp...@genoprime.com>
Committed: Tue Sep 18 12:58:14 2018 -0400

----------------------------------------------------------------------
 docs/src/upgrade/index.asciidoc         | 2 ++
 docs/src/upgrade/release-3.4.x.asciidoc | 4 ++--
 2 files changed, 4 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/da3c601d/docs/src/upgrade/index.asciidoc
----------------------------------------------------------------------
diff --git a/docs/src/upgrade/index.asciidoc b/docs/src/upgrade/index.asciidoc
index 65a1c88..ac3eeb8 100644
--- a/docs/src/upgrade/index.asciidoc
+++ b/docs/src/upgrade/index.asciidoc
@@ -34,6 +34,8 @@ These providers include:
 * Graph Language Provider
 * Graph Plugin Provider
 
+include::release-3.4.x.asciidoc[]
+
 include::release-3.3.x.asciidoc[]
 
 include::release-3.2.x-incubating.asciidoc[]

http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/da3c601d/docs/src/upgrade/release-3.4.x.asciidoc
----------------------------------------------------------------------
diff --git a/docs/src/upgrade/release-3.4.x.asciidoc b/docs/src/upgrade/release-3.4.x.asciidoc
index 8322cc7..e0484a8 100644
--- a/docs/src/upgrade/release-3.4.x.asciidoc
+++ b/docs/src/upgrade/release-3.4.x.asciidoc
@@ -36,10 +36,10 @@ The infix notation of `and()` and `or()` now supports an arbitrary number of tra
 ```
 Input: a.or.b.and.c.or.d.and.e.or.f.and.g.and.h.or.i
 
-## BEFORE
+*BEFORE*
 Output: or(a, or(and(b, c), or(and(d, e), or(and(and(f, g), h), i))))
 
-## NOW
+*NOW*
 Output: or(a, and(b, c), and(d, e), and(f, g, h), i)
 ```