You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@age.apache.org by de...@apache.org on 2022/01/14 00:17:22 UTC

[incubator-age] branch release/0.70 created (now e1fcfe1)

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

dehowef pushed a change to branch release/0.70
in repository https://gitbox.apache.org/repos/asf/incubator-age.git.


      at e1fcfe1  Update version from 0.6.0 to 0.7.0

This branch includes the following new commits:

     new e1fcfe1  Update version from 0.6.0 to 0.7.0

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


[incubator-age] 01/01: Update version from 0.6.0 to 0.7.0

Posted by de...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

dehowef pushed a commit to branch release/0.70
in repository https://gitbox.apache.org/repos/asf/incubator-age.git

commit e1fcfe19bf8c815916055faf3911e33ba84b6366
Author: Dehowe Feng <de...@gmail.com>
AuthorDate: Thu Jan 13 15:43:10 2022 -0800

    Update version from 0.6.0 to 0.7.0
    
    Updated the age--*.sql filename, default version in age.control, added
    release notes, modified the makefile, and modified the README.
---
 Makefile                         |  2 +-
 README.md                        |  2 +-
 RELEASE                          | 39 ++++++++++++++++++++++++++++++++-------
 age--0.6.0.sql => age--0.7.0.sql |  0
 age.control                      |  2 +-
 doc/conf.py                      |  2 +-
 6 files changed, 36 insertions(+), 11 deletions(-)

diff --git a/Makefile b/Makefile
index 1f97aab..ded4232 100644
--- a/Makefile
+++ b/Makefile
@@ -61,7 +61,7 @@ OBJS = src/backend/age.o \
 
 EXTENSION = age
 
-DATA = age--0.6.0.sql
+DATA = age--0.7.0.sql
 
 # sorted in dependency order
 REGRESS = scan \
diff --git a/README.md b/README.md
index b334a4b..f83c0cf 100644
--- a/README.md
+++ b/README.md
@@ -27,7 +27,7 @@ Intelligent -- AGE allows you to perform graph queries that are the basis for ma
 
 ## Latest happenings
 
-- Latest Apache AGE release, [Apache AGE 0.6.0 (incubating)](https://github.com/apache/incubator-age/releases/tag/v0.6.0).
+- Latest Apache AGE release, [Apache AGE 0.7.0 (incubating)](https://github.com/apache/incubator-age/releases/tag/v0.7.0).
 - The latest Apache AGE documentation is now available at [here](https://age.apache.org/docs/master/index.html).
 - The roadmap has been updated, please check out the [Apache AGE website](http://age.apache.org/).
 - Send all your comments and inquiries to the user mailing list, users@age.apache.org.
diff --git a/RELEASE b/RELEASE
index d78435f..41d3499 100644
--- a/RELEASE
+++ b/RELEASE
@@ -15,12 +15,37 @@
 # specific language governing permissions and limitations
 # under the License.
 
-Release Notes for Apache AGE release v0.6.0
+Release Notes for AGE 0.7.0 - Release Notes 
 
-    Add VLE SRF (Set Returning Function).
-    Fix Vertex, Edge, and Path serialization bug (AGE2-307).
-    Fix CREATE passback bug (AGE2-337).
-    Fix CREATE transaction block bug (AGE2-345).
-    Fix parallel build errors.
-    Fix Travis CI compiler warnings.
+    Refactor and bug fix of DELETE’s usage of currentCommandId.
+    Add Labels creation functions (issue #115).
+    Refactor and bug fix of SET’s usage of currentCommandId.
+    Add regular expression comparisons with ‘~=’.
+    Add relationships() function.
+    Add range() function.
+    Add keys() function.
+    Update README.
+    Add labels() function.
+    Add nodes() function.
+    Add XOR operator.
+    Fix Mac OS X compilation (issue #82).
+    Create issue templates (issue #90).
+    Fix nodejs driver (issue #104).
+    Add reverse() function for lists.
+    Refactor code for CREATE vertex and edge labels (issue #136).
+    Add AGTYPE parser and driver support to Python and Golang.
+    Fix incorrect parse tree for EXISTS (issue #141).
+    Add VLE core to the MATCH clause.
+    Fix licensing issues in the master branch.
+    Refactor VLE edge uniqueness.
+    Add AGTYPE and GRAPHID send and receive functions.
+    Add precision parameter to round().
+    Fix SET clause (issue #165).
+    Add typecasting to int4[].
+    Updated documentation.
+    Add new docker file.
+    Add zero boundary case to VLE.
+    Add ASF licenses for Python and Golang drivers.
+    Fix for zero boundary case.
+    Fix for paths of length one.
 
diff --git a/age--0.6.0.sql b/age--0.7.0.sql
similarity index 100%
rename from age--0.6.0.sql
rename to age--0.7.0.sql
diff --git a/age.control b/age.control
index 74977ca..92490bb 100644
--- a/age.control
+++ b/age.control
@@ -15,7 +15,7 @@
 # specific language governing permissions and limitations
 # under the License.
 
-default_version = '0.6.0'
+default_version = '0.7.0'
 comment = 'AGE database extension'
 module_pathname = '$libdir/age'
 
diff --git a/doc/conf.py b/doc/conf.py
index 82ce46c..b5952d4 100644
--- a/doc/conf.py
+++ b/doc/conf.py
@@ -43,7 +43,7 @@ author = u'Apache AGE (incubating) Team'
 # The short X.Y version
 version = u''
 # The full version, including alpha/beta/rc tags
-release = u'0.6.0'
+release = u'0.7.0'
 
 
 # -- General configuration ---------------------------------------------------