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

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


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

commit d693dfa80cff4e08ec46c0c3bbccb548d5d42c5e
Author: Arseni Bulatski <ancars...@gmail.com>
AuthorDate: Wed Feb 6 12:35:55 2019 +0300

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

diff --git a/src/main/site/content/docs/3.1/cayenne-guide.html 
b/src/main/site/content/docs/3.1/cayenne-guide.html
index 87006a4..5199f45 100644
--- a/src/main/site/content/docs/3.1/cayenne-guide.html
+++ b/src/main/site/content/docs/3.1/cayenne-guide.html
@@ -63,7 +63,7 @@ weight: 20
         &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> 
@@ -240,7 +240,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> 
@@ -396,7 +396,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
@@ -536,7 +536,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;
@@ -668,7 +668,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;
@@ -1443,7 +1443,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)) {
    ...
@@ -1464,7 +1464,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/src/main/site/content/docs/3.1/getting-started-guide.html 
b/src/main/site/content/docs/3.1/getting-started-guide.html
index 43cd893..eb1bb48 100644
--- a/src/main/site/content/docs/3.1/getting-started-guide.html
+++ b/src/main/site/content/docs/3.1/getting-started-guide.html
@@ -302,7 +302,7 @@ weight: 10
             &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/src/main/site/content/docs/3.1/getting-started-rop.html 
b/src/main/site/content/docs/3.1/getting-started-rop.html
index 7649588..71d9768 100644
--- a/src/main/site/content/docs/3.1/getting-started-rop.html
+++ b/src/main/site/content/docs/3.1/getting-started-rop.html
@@ -105,7 +105,7 @@ weight: 40
             &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