This is an automated email from the ASF dual-hosted git repository.

abulatski pushed a commit to branch asf-site
in repository https://gitbox.apache.org/repos/asf/cayenne-website.git


The following commit(s) were added to refs/heads/asf-site by this push:
     new bd55daa  Update docs for 3.1
bd55daa is described below

commit bd55daa654f2056d55fecc50abfcd5b28363c27d
Author: Arseni Bulatski <ancars...@gmail.com>
AuthorDate: Wed Feb 6 12:33:31 2019 +0300

    Update docs for 3.1
---
 docs/3.1/cayenne-guide/index.html         | 14 +++++++-------
 docs/3.1/getting-started-guide/index.html |  2 +-
 docs/3.1/getting-started-rop/index.html   |  2 +-
 3 files changed, 9 insertions(+), 9 deletions(-)

diff --git a/docs/3.1/cayenne-guide/index.html 
b/docs/3.1/cayenne-guide/index.html
index 7082d0c..e259f6d 100644
--- a/docs/3.1/cayenne-guide/index.html
+++ b/docs/3.1/cayenne-guide/index.html
@@ -224,7 +224,7 @@
         &lt;plugin&gt;
             &lt;groupId&gt;org.apache.cayenne.plugins&lt;/groupId&gt;
             &lt;artifactId&gt;maven-cayenne-modeler-plugin&lt;/artifactId&gt;
-            &lt;version&gt;3.1.3-SNAPSHOT&lt;/version&gt;
+            &lt;version&gt;3.1.4-SNAPSHOT&lt;/version&gt;
         &lt;/plugin&gt;
     &lt;/plugins&gt;
 &lt;/build&gt;</code></pre> 
@@ -401,7 +401,7 @@ total 24
       <pre class="highlight"><code class="language-xml xml" 
data-lang="xml">&lt;dependency&gt;
    &lt;groupId&gt;org.apache.cayenne&lt;/groupId&gt;
    &lt;artifactId&gt;cayenne-server&lt;/artifactId&gt;
-   &lt;version&gt;3.1.3-SNAPSHOT&lt;/version&gt;
+   &lt;version&gt;3.1.4-SNAPSHOT&lt;/version&gt;
 &lt;/dependency&gt;</code></pre> 
      </div> 
     </div> 
@@ -557,7 +557,7 @@ total 24
        <pre class="highlight"><code class="language-xml xml" 
data-lang="xml">&lt;plugin&gt;
     &lt;groupId&gt;org.apache.cayenne.plugins&lt;/groupId&gt;
     &lt;artifactId&gt;cayenne-maven-plugin&lt;/artifactId&gt;
-    &lt;version&gt;3.1.3-SNAPSHOT&lt;/version&gt;
+    &lt;version&gt;3.1.4-SNAPSHOT&lt;/version&gt;
 
     &lt;!--
         There's an intermittent problem when using Maven/cgen in Eclipse with  
m2eclipse plugin that
@@ -697,7 +697,7 @@ total 24
        <pre class="highlight"><code class="language-xml xml" 
data-lang="xml">&lt;plugin&gt;
     &lt;groupId&gt;org.apache.cayenne.plugins&lt;/groupId&gt;
     &lt;artifactId&gt;maven-cayenne-plugin&lt;/artifactId&gt;
-    &lt;version&gt;3.1.3-SNAPSHOT&lt;/version&gt;
+    &lt;version&gt;3.1.4-SNAPSHOT&lt;/version&gt;
 
     &lt;executions&gt;
         &lt;execution&gt;
@@ -829,7 +829,7 @@ total 24
        <pre class="highlight"><code class="language-XML XML" 
data-lang="XML">&lt;plugin&gt;
     &lt;groupId&gt;org.apache.cayenne.plugins&lt;/groupId&gt;
     &lt;artifactId&gt;cayenne-maven-plugin&lt;/artifactId&gt;
-    &lt;version&gt;3.1.3-SNAPSHOT&lt;/version&gt;
+    &lt;version&gt;3.1.4-SNAPSHOT&lt;/version&gt;
 
     &lt;executions&gt;
         &lt;execution&gt;
@@ -1604,7 +1604,7 @@ Expression matchAllExp(String path, Object... 
values)</code></pre>
     </div> 
     <div class="listingblock"> 
      <div class="content"> 
-      <pre class="highlight"><code class="language-java java" 
data-lang="java">Expression e = Artist.NAME.in("John", "Bob");
+      <pre class="highlight"><code class="language-java java" 
data-lang="java">Expression e = ExpressionFactory.inExp("artistName", "John", 
"Bob");
 Artist artist = ...
 if(e.match(artist)) {
    ...
@@ -1625,7 +1625,7 @@ String name = e.evaluate(user);</code></pre>
     </div> 
     <div class="listingblock"> 
      <div class="content"> 
-      <pre class="highlight"><code class="language-java java" 
data-lang="java">Expression e = Artist.NAME.in("John", "Bob");
+      <pre class="highlight"><code class="language-java java" 
data-lang="java">Expression e = ExpressionFactory.inExp("artistName", "John", 
"Bob");
 List&lt;Artist&gt; unfiltered = ...
 List&lt;Artist&gt; filtered = e.filterObjects(unfiltered);</code></pre> 
      </div> 
diff --git a/docs/3.1/getting-started-guide/index.html 
b/docs/3.1/getting-started-guide/index.html
index 6b64de2..f032edc 100644
--- a/docs/3.1/getting-started-guide/index.html
+++ b/docs/3.1/getting-started-guide/index.html
@@ -453,7 +453,7 @@
             &lt;groupId&gt;org.apache.cayenne&lt;/groupId&gt;
             &lt;artifactId&gt;cayenne-server&lt;/artifactId&gt;
    &lt;!-- Here specify the version of Cayenne you are actually using --&gt;
-            &lt;version&gt;3.1.3-SNAPSHOT&lt;/version&gt;
+            &lt;version&gt;3.1.4-SNAPSHOT&lt;/version&gt;
         &lt;/dependency&gt;
     &lt;/dependencies&gt;
 &lt;/project&gt;</code></pre> 
diff --git a/docs/3.1/getting-started-rop/index.html 
b/docs/3.1/getting-started-rop/index.html
index dfb9450..6f80a91 100644
--- a/docs/3.1/getting-started-rop/index.html
+++ b/docs/3.1/getting-started-rop/index.html
@@ -245,7 +245,7 @@
             &lt;groupId&gt;org.apache.cayenne&lt;/groupId&gt;
             &lt;artifactId&gt;cayenne-client&lt;/artifactId&gt;
             &lt;!-- Here specify the version of Cayenne you are actually using 
--&gt;
-            &lt;version&gt;3.1.3-SNAPSHOT&lt;/version&gt;
+            &lt;version&gt;3.1.4-SNAPSHOT&lt;/version&gt;
         &lt;/dependency&gt;
         &lt;dependency&gt;
         &lt;groupId&gt;com.caucho&lt;/groupId&gt;

Reply via email to