Skip to content

Commit 5d86c95

Browse files
committed
Patch to AGE for PG12 to remove incubating
This is a patch to remove the word incubate from AGE for PG12
1 parent a20169e commit 5d86c95

File tree

12 files changed

+36
-46
lines changed

12 files changed

+36
-46
lines changed

CONTRIBUTING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Contributing to Apache Incubator AGE
1+
# Contributing to Apache AGE
22

33
First off, thank you for considering contributing.
44

@@ -12,4 +12,4 @@ Thank you for raising issues.
1212

1313
## Pull Requests
1414

15-
Pull requests are a great way to get your ideas into this repository. Check out our list of good [first issues](https://github.com/apache/incubator-age/labels/good%20first%20issue)
15+
Pull requests are a great way to get your ideas into this repository. Check out our list of good [first issues](https://github.com/apache/age/labels/good%20first%20issue)

DISCLAIMER

Lines changed: 0 additions & 10 deletions
This file was deleted.

drivers/golang/README.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# incubator-age AGType parser and driver support for Golang
1+
# age AGType parser and driver support for Golang
22

33
AGType parser and driver support for [Apache AGE](https://age.apache.org/), graph extention for PostgreSQL.
44

@@ -13,20 +13,20 @@ AGType parser and driver support for [Apache AGE](https://age.apache.org/), grap
1313

1414
### Go get
1515
```
16-
go get github.com/apache/incubator-age/drivers/golang
16+
go get github.com/apache/age/drivers/golang
1717
```
1818
### gomod
1919
```
20-
require github.com/apache/incubator-age/drivers/golang {version}
20+
require github.com/apache/age/drivers/golang {version}
2121
```
2222

2323

24-
Check [latest version](https://github.com/apache/incubator-age/releases)
24+
Check [latest version](https://github.com/apache/age/releases)
2525

2626
### For more information about [Apache AGE](https://age.apache.org/)
27-
* Apache Incubator Age : https://age.apache.org/
28-
* Github : https://github.com/apache/incubator-age
29-
* Document : https://age.incubator.apache.org/docs/
27+
* Apache Age : https://age.apache.org/
28+
* Github : https://github.com/apache/age
29+
* Document : https://age.apache.org/docs/
3030

3131
### Check AGE loaded on your PostgreSQL
3232
Connect to your containerized Postgres instance and then run the following commands:
@@ -38,9 +38,9 @@ SET search_path = ag_catalog, "$user", public;
3838
```
3939

4040
### Test
41-
Check out and rewrite DSN in incubator-age/drivers/golang/age/age_test.go
41+
Check out and rewrite DSN in age/drivers/golang/age/age_test.go
4242
```
43-
cd incubator-age/drivers/golang/age
43+
cd age/drivers/golang/age
4444
go test . -v
4545
4646
```
@@ -56,4 +56,4 @@ go test . -v
5656

5757

5858
### License
59-
Apache-2.0 License
59+
Apache-2.0 License

drivers/golang/age/builder.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ import (
2626
"strings"
2727

2828
"github.com/antlr/antlr4/runtime/Go/antlr"
29-
"github.com/apache/incubator-age/drivers/golang/parser"
29+
"github.com/apache/age/drivers/golang/parser"
3030
)
3131

3232
const MaxUint = ^uint(0)

drivers/golang/age/mapper.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ import (
2424
"strings"
2525

2626
"github.com/antlr/antlr4/runtime/Go/antlr"
27-
"github.com/apache/incubator-age/drivers/golang/parser"
27+
"github.com/apache/age/drivers/golang/parser"
2828
)
2929

3030
type AGMapper struct {

drivers/golang/go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,12 @@
1717
// * under the License.
1818
// */
1919

20-
module github.com/apache/incubator-age/drivers/golang
20+
module github.com/apache/age/drivers/golang
2121

2222
go 1.16
2323

2424
require (
25-
github.com/antlr/antlr4/runtime/Go/antlr v0.0.0-20210521184019-c5ad59b459ec
25+
github.com/antlr/antlr4/runtime/Go/antlr v0.0.0-20221020221120-327014a2b522
2626
github.com/lib/pq v1.10.2
2727
github.com/stretchr/testify v1.7.0
2828
)

drivers/golang/samples/age_wrapper_sample.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ package main
2121
import (
2222
"fmt"
2323

24-
"github.com/apache/incubator-age/drivers/golang/age"
24+
"github.com/apache/age/drivers/golang/age"
2525
)
2626

2727
// Do cypher query to AGE with Age API

drivers/golang/samples/sql_api_sample.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ import (
2222
"database/sql"
2323
"fmt"
2424

25-
"github.com/apache/incubator-age/drivers/golang/age"
25+
"github.com/apache/age/drivers/golang/age"
2626
)
2727

2828
// Do cypher query to AGE with database/sql Tx API transaction conrol

drivers/python/README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# incubator-age AGType parser and driver support for Python
1+
# AGE AGType parser and driver support for Python
22
AGType parser and driver support for [Apache AGE](https://age.apache.org/), graph extention for PostgreSQL.
33

44
### Features
@@ -22,25 +22,25 @@ python -m unittest -v test_agtypes.py
2222
```
2323

2424
### Build from source
25-
```
26-
git clone https://github.com/apache/incubator-age.git
27-
cd incubator-age/dirivers/python
25+
```
26+
git clone https://github.com/apache/age.git
27+
cd age/drivers/python
2828
2929
python setup.py install
3030
3131
```
3232

3333
### Install from PyPi
3434

35-
```
35+
```
3636
pip install apache-age-python
3737
3838
```
3939

4040
### For more information about [Apache AGE](https://age.apache.org/)
41-
* Apache Incubator Age : https://age.apache.org/
42-
* Github : https://github.com/apache/incubator-age
43-
* Document : https://age.incubator.apache.org/docs/
41+
* Apache Age : https://age.apache.org/
42+
* Github : https://github.com/apache/age
43+
* Document : https://age.apache.org/age-manual/master/index.html
4444
* apache-age-python GitHub : https://github.com/rhizome-ai/apache-age-python
4545

4646
### Check AGE loaded on your PostgreSQL
@@ -58,4 +58,4 @@ SET search_path = ag_catalog, "$user", public;
5858
* Agtype converting samples: [Agtype Sample](samples/apache-age-agtypes.ipynb) in Samples.
5959

6060
### License
61-
Apache-2.0 License
61+
Apache-2.0 License

drivers/python/setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,14 +20,14 @@
2020
long_description = fh.read()
2121

2222
setup(
23-
name = 'incubator-age',
23+
name = 'age',
2424
version = VERSION.VERSION,
2525
description = 'Python driver support for Apache AGE',
2626
long_description=long_description,
2727
long_description_content_type="text/markdown",
2828
author = 'rhizome',
2929
author_email = 'rhizome.ai@gmail.com',
30-
url = 'https://github.com/apache/incubator-age',
30+
url = 'https://github.com/apache/age',
3131
license = 'Apache2.0',
3232
install_requires = [ 'psycopg2', 'antlr4-python3-runtime' ],
3333
packages = ['age', 'age.gen'],
@@ -38,4 +38,4 @@
3838
classifiers = [
3939
'Programming Language :: Python :: 3.9'
4040
]
41-
)
41+
)

0 commit comments

Comments
 (0)