Skip to content

Commit 790439d

Browse files
Default to PostgreSQL 17, minor bump for pgrx
1 parent 2bad345 commit 790439d

File tree

4 files changed

+23
-23
lines changed

4 files changed

+23
-23
lines changed

Cargo.lock

Lines changed: 15 additions & 15 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Readme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ sudo apt-get install make gcc pkg-config clang postgresql-server-dev-14 libssl-d
5353
Next you need [cargo-pgrx](https://github.com/tcdi/pgrx), which can be installed with
5454

5555
```bash
56-
cargo install --version '=0.12.8' --force cargo-pgrx
56+
cargo install --version '=0.12.9' --force cargo-pgrx
5757
```
5858

5959
You must reinstall cargo-pgrx whenever you update your Rust compiler, since cargo-pgrx needs to be built with the same compiler as Toolkit.

extension/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ path = "./src/bin/pgrx_embed.rs"
1111
crate-type = ["cdylib", "lib"]
1212

1313
[features]
14-
default = ["pg16"]
14+
default = ["pg17"]
1515
pg12 = ["pgrx/pg12", "pgrx-tests/pg12"]
1616
pg13 = ["pgrx/pg13", "pgrx-tests/pg13"]
1717
pg14 = ["pgrx/pg14", "pgrx-tests/pg14"]
@@ -23,9 +23,9 @@ pg_test = ["approx"]
2323
[dependencies]
2424
# Keep synchronized with `cargo install --version N.N.N cargo-pgrx` in Readme.md and docker/ci/Dockerfile
2525
# Also `pgrx-tests` down below in `dev-dependencies`.
26-
pgrx = "=0.12.8"
27-
pgrx-macros = "=0.12.8"
28-
pgrx-sql-entity-graph = "=0.12.8"
26+
pgrx = "=0.12.9"
27+
pgrx-macros = "=0.12.9"
28+
pgrx-sql-entity-graph = "=0.12.9"
2929
encodings = {path="../crates/encodings"}
3030
flat_serialize = {path="../crates/flat_serialize/flat_serialize"}
3131
flat_serialize_macro = {path="../crates/flat_serialize/flat_serialize_macro"}
@@ -62,5 +62,5 @@ spfunc = "0.1.0"
6262
statrs = "0.15.0"
6363

6464
[dev-dependencies]
65-
pgrx-tests = "=0.12.8"
65+
pgrx-tests = "=0.12.9"
6666
approx = "0.4.0"

tools/dependencies.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@
88
# information across all those.
99

1010
PG_VERSIONS='12 13 14 15 16 17'
11-
# TODO: extend this with 16 this once TimescaleDB supports PostgreSQL 16: issue #5752
11+
# TODO: extend this with 18 this once TimescaleDB supports PostgreSQL 18
1212
TSDB_PG_VERSIONS='12 13 14 15 16 17'
1313

1414
CARGO_EDIT=0.11.2
1515

1616
# Keep synchronized with extension/Cargo.toml and `cargo install --version N.N.N cargo-pgrx` in Readme.md .
17-
PGRX_VERSION=0.12.8
17+
PGRX_VERSION=0.12.9
1818

1919
RUST_TOOLCHAIN=1.82.0
2020
RUST_PROFILE=minimal

0 commit comments

Comments
 (0)