Skip to content

Commit

Permalink
Merge pull request #34 from tomhoule/upgrade-pgrx
Browse files Browse the repository at this point in the history
Upgrade pgrx to 11.2
  • Loading branch information
pksunkara authored Dec 14, 2023
2 parents 9bd5563 + 66fc3e3 commit 68486e4
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ jobs:
# Ensure installed pg_config is first on path
export PATH=$PATH:/usr/lib/postgresql/${{ matrix.postgres }}/bin
cargo install cargo-pgrx --version 0.10.2 --locked
cargo install cargo-pgrx --version 0.11.2 --locked
cargo pgrx init --pg${{ matrix.postgres }}=/usr/lib/postgresql/${{ matrix.postgres }}/bin/pg_config
- name: Build artifacts
run: |
Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@ pg_test = []

[dependencies]
inner_ulid = { package = "ulid", version = "1.0.0" }
pgrx = "=0.10.2"
pgrx = "=0.11.2"

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

[profile.dev]
panic = "unwind"
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ RUN \
cargo --version

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

RUN cargo pgrx init --pg${PG_MAJOR} $(which pg_config)

Expand Down

0 comments on commit 68486e4

Please sign in to comment.