Skip to content

Commit 8d5d2f4

Browse files
committed
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.
1 parent a7a651b commit 8d5d2f4

File tree

6 files changed

+37
-11
lines changed

6 files changed

+37
-11
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ OBJS = src/backend/age.o \
6161

6262
EXTENSION = age
6363

64-
DATA = age--0.6.0.sql
64+
DATA = age--0.7.0.sql
6565

6666
# sorted in dependency order
6767
REGRESS = scan \

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ Intelligent -- AGE allows you to perform graph queries that are the basis for ma
2727

2828
## Latest happenings
2929

30-
- Latest Apache AGE release, [Apache AGE 0.6.0 (incubating)](https://github.com/apache/incubator-age/releases/tag/v0.6.0).
30+
- Latest Apache AGE release, [Apache AGE 0.7.0 (incubating)](https://github.com/apache/incubator-age/releases/tag/v0.7.0).
3131
- The latest Apache AGE documentation is now available at [here](https://age.apache.org/docs/master/index.html).
3232
- The roadmap has been updated, please check out the [Apache AGE website](http://age.apache.org/).
3333
- Send all your comments and inquiries to the user mailing list, users@age.apache.org.

RELEASE

Lines changed: 33 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,38 @@
1515
# specific language governing permissions and limitations
1616
# under the License.
1717

18-
Release Notes for Apache AGE release v0.6.0
18+
Release Notes for Apache AGE release v0.7.0
1919

20-
Add VLE SRF (Set Returning Function).
21-
Fix Vertex, Edge, and Path serialization bug (AGE2-307).
22-
Fix CREATE passback bug (AGE2-337).
23-
Fix CREATE transaction block bug (AGE2-345).
24-
Fix parallel build errors.
25-
Fix Travis CI compiler warnings.
20+
Apache AGE 0.7.0 - Release Notes
2621

22+
Refactor and bug fix of DELETE’s usage of currentCommandId.
23+
Add Labels creation functions (issue #115).
24+
Refactor and bug fix of SET’s usage of currentCommandId.
25+
Add regular expression comparisons with ‘~=’.
26+
Add relationships() function.
27+
Add range() function.
28+
Add keys() function.
29+
Update README.
30+
Add labels() function.
31+
Add nodes() function.
32+
Add XOR operator.
33+
Fix Mac OS X compilation (issue #82).
34+
Create issue templates (issue #90).
35+
Fix nodejs driver (issue #104).
36+
Add reverse() function for lists.
37+
Refactor code for CREATE vertex and edge labels (issue #136).
38+
Add AGTYPE parser and driver support to Python and Golang.
39+
Fix incorrect parse tree for EXISTS (issue #141).
40+
Add VLE core to the MATCH clause.
41+
Fix licensing issues in the master branch.
42+
Refactor VLE edge uniqueness.
43+
Add AGTYPE and GRAPHID send and receive functions.
44+
Add precision parameter to round().
45+
Fix SET clause (issue #165).
46+
Add typecasting to int4[].
47+
Updated documentation.
48+
Add new docker file.
49+
Add zero boundary case to VLE.
50+
Add ASF licenses for Python and Golang drivers.
51+
Fix for zero boundary case.
52+
Fix for paths of length one.
File renamed without changes.

age.control

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
# specific language governing permissions and limitations
1616
# under the License.
1717

18-
default_version = '0.6.0'
18+
default_version = '0.7.0'
1919
comment = 'AGE database extension'
2020
module_pathname = '$libdir/age'
2121

doc/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
# The short X.Y version
4444
version = u''
4545
# The full version, including alpha/beta/rc tags
46-
release = u'0.6.0'
46+
release = u'0.7.0'
4747

4848

4949
# -- General configuration ---------------------------------------------------

0 commit comments

Comments
 (0)