Skip to content

Commit 9cc269c

Browse files
committed
Update to pgrx 0.14.1.
1 parent 8ecbde7 commit 9cc269c

File tree

5 files changed

+228
-226
lines changed

5 files changed

+228
-226
lines changed

Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,20 +9,20 @@ crate-type = ["cdylib", "lib"]
99

1010
[features]
1111
default = ["pg16"]
12-
pg12 = ["pgrx/pg12"]
1312
pg13 = ["pgrx/pg13"]
1413
pg14 = ["pgrx/pg14"]
1514
pg15 = ["pgrx/pg15"]
1615
pg16 = ["pgrx/pg16"]
16+
pg17 = ["pgrx/pg17"]
1717
pg_test = []
1818

1919
[dependencies]
20-
pgrx = "=0.12.0-alpha.1"
21-
#pgrx-macros = "=0.12.0-alpha.1"
20+
pgrx = "0.14.1"
21+
pgrx-macros = "=0.14.1"
2222

2323

2424
[dev-dependencies]
25-
pgrx-tests = "=0.12.0-alpha.1"
25+
pgrx-tests = "0.14.1"
2626

2727

2828
[profile.dev]

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2018 - 2024 Ryan Lambert
3+
Copyright (c) 2018 - 2025 Ryan Lambert
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

build/build.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@ BASE=$(dirname `pwd`)
2121
VERSION=$(cat $BASE/pgdd.control | grep default_version | cut -f2 -d\')
2222
LOGDIR=${BASE}/target/logs
2323
ARTIFACTDIR=${BASE}/target/artifacts
24-
PGRXVERSION=0.12.0-alpha.1
24+
PGRXVERSION=0.14.1
2525

26-
#PG_VERS=("pg12" "pg13" "pg14" "pg15" "pg16")
27-
PG_VERS=("pg16")
26+
#PG_VERS=("pg13" "pg14" "pg15" "pg16" "pg17")
27+
PG_VERS=("pg17")
2828

2929
echo $BASE
3030
echo $VERSION

docs/src/create-installer.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ with all versions and uncommenting the line with a specific Postgres version.
6868
The two lines in the script are shown below.
6969

7070
```bash
71-
PG_VERS=("pg12" "pg13" "pg14" "pg15" "pg16")
71+
PG_VERS=("pg13" "pg14" "pg15" "pg16" "pg17")
7272
#PG_VERS=("pg16")
7373
```
7474

0 commit comments

Comments
 (0)