You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@age.apache.org by jo...@apache.org on 2021/09/09 22:50:30 UTC

[incubator-age] branch master updated: Update version from 0.5.0 to 0.6.0

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 3681c90  Update version from 0.5.0 to 0.6.0
3681c90 is described below

commit 3681c90da68353507001db89eb429755d34857f7
Author: Josh Innis <Jo...@gmail.com>
AuthorDate: Thu Sep 9 15:44:17 2021 -0700

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

diff --git a/Makefile b/Makefile
index eea8eb7..2bbe1c7 100644
--- a/Makefile
+++ b/Makefile
@@ -59,7 +59,7 @@ OBJS = src/backend/age.o \
 
 EXTENSION = age
 
-DATA = age--0.5.0.sql
+DATA = age--0.6.0.sql
 
 # sorted in dependency order
 REGRESS = scan \
diff --git a/README.md b/README.md
index a0422d0..38abb68 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.5.0 (incubating)](https://github.com/apache/incubator-age/releases/tag/v0.5.0).
+- Latest Apache AGE release, [Apache AGE 0.6.0 (incubating)](https://github.com/apache/incubator-age/releases/tag/v0.6.0).
 - The latest Apache AGE documentation is now available at [here](http://age.incubator.apache.org/docs/Apache_AGE_Guide.pdf).
 - 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 f69410c..d78435f 100644
--- a/RELEASE
+++ b/RELEASE
@@ -15,15 +15,12 @@
 # specific language governing permissions and limitations
 # under the License.
 
-Release Notes for Apache AGE release v0.5.0
+Release Notes for Apache AGE release v0.6.0
+
+    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.
 
-    Added Support for Agtype to be used in Hash Joins
-    Added Support for DELETE to be the last clause in a Cypher statement
-    Fix a bug where DELETE, REMOVE, and SET would not update a vertex/edge
-    Added support for SKIP and LIMIT as sub-clauses for the WITH and RETURN statement
-    Added support for CASE statement
-    Added support for PostgreSQL EXPLAIN utility command
-    Add operator overload for agtype to numeric
-    Added ANTLR4 grammar file to be used with the JDBC and NodeJS drivers
-    Added NULL regression tests
-    Added label function
diff --git a/age--0.5.0.sql b/age--0.6.0.sql
similarity index 100%
rename from age--0.5.0.sql
rename to age--0.6.0.sql
diff --git a/age.control b/age.control
index c2d94c1..74977ca 100644
--- a/age.control
+++ b/age.control
@@ -15,7 +15,7 @@
 # specific language governing permissions and limitations
 # under the License.
 
-default_version = '0.5.0'
+default_version = '0.6.0'
 comment = 'AGE database extension'
 module_pathname = '$libdir/age'
 
diff --git a/doc/conf.py b/doc/conf.py
index 583998f..82ce46c 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.5.0'
+release = u'0.6.0'
 
 
 # -- General configuration ---------------------------------------------------