Update AGE from 0.6.0 to 0.7.0

Updated the Makefile, the README, the default version in age.control,
added released notes and updated the age--*.sql filename.
diff --git a/Makefile b/Makefile
index 1f97aab..ded4232 100644
--- a/Makefile
+++ b/Makefile
@@ -61,7 +61,7 @@
 
 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 @@
 
 ## 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..33e7f08 100644
--- a/RELEASE
+++ b/RELEASE
@@ -15,12 +15,38 @@
 # specific language governing permissions and limitations
 # under the License.
 
-Release Notes for Apache AGE release v0.6.0
+Release Notes for Apache AGE release v0.7.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.
+Apache AGE 0.7.0 - Release Notes 
 
+    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 @@
 # 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 ---------------------------------------------------