diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 75a0196..e72a4af 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -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: | diff --git a/Cargo.toml b/Cargo.toml index c4f3a9f..6d949b7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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" diff --git a/Dockerfile b/Dockerfile index 4dc0c67..65c8137 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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)