Skip to content

Commit

Permalink
Merge pull request #45 from supabase/or/pgrx-0.11.2
Browse files Browse the repository at this point in the history
Upgrade `prgx` to 0.11.2
  • Loading branch information
imor committed Dec 13, 2023
2 parents dd6ce42 + d3c4abe commit 4528877
Show file tree
Hide file tree
Showing 4 changed files with 67 additions and 37 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Expand Up @@ -40,7 +40,7 @@ jobs:
package_name:
- pg-jsonschema
pgrx_version:
- 0.10.2
- 0.11.2
postgres: [14, 15, 16]
box:
- { runner: ubuntu-20.04, arch: amd64 }
Expand Down
94 changes: 62 additions & 32 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions Cargo.toml
Expand Up @@ -7,7 +7,7 @@ edition = "2021"
crate-type = ["cdylib"]

[features]
default = ["pg16"]
default = ["pg15"]
pg12 = ["pgrx/pg12", "pgrx-tests/pg12" ]
pg13 = ["pgrx/pg13", "pgrx-tests/pg13" ]
pg14 = ["pgrx/pg14", "pgrx-tests/pg14" ]
Expand All @@ -16,13 +16,13 @@ pg16 = ["pgrx/pg16", "pgrx-tests/pg16" ]
pg_test = []

[dependencies]
pgrx = "0.10.2"
pgrx = "0.11.2"
serde = "1.0"
serde_json = "1.0"
jsonschema = {version = "0.17.1", default-features = false, features = []}

[dev-dependencies]
pgrx-tests = "0.10.2"
pgrx-tests = "0.11.2"

[profile.dev]
panic = "unwind"
Expand Down
2 changes: 1 addition & 1 deletion dockerfiles/db/Dockerfile
Expand Up @@ -27,7 +27,7 @@ RUN \
cargo --version

# PGX
RUN cargo install cargo-pgrx --version 0.10.2 --locked
RUN cargo install cargo-pgrx --version 0.11.2 --locked

RUN cargo pgrx init --pg16 $(which pg_config)

Expand Down

0 comments on commit 4528877

Please sign in to comment.