Skip to content

Commit 5d9f037

Browse files
authored
chore: bump pgrx to 0.16.1 (#23)
* use main branch and pgrx 0.16.1
1 parent 212a984 commit 5d9f037

File tree

2 files changed

+11
-5
lines changed

2 files changed

+11
-5
lines changed

.github/workflows/build_test.yaml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,14 @@ name: Cargo Build & Test
22

33
on:
44
push:
5+
branches:
6+
- main
57
pull_request:
68

9+
concurrency:
10+
group: ${{ github.workflow }}-${{ github.ref }}
11+
cancel-in-progress: true
12+
713
env:
814
CARGO_TERM_COLOR: always
915

@@ -32,7 +38,7 @@ jobs:
3238
with:
3339
path: |
3440
~/.pgrx/
35-
key: pgrx-0.16.0
41+
key: pgrx-0.16.1
3642

3743
- name: Install latest stable toolchain
3844
uses: actions-rs/toolchain@v1
@@ -44,7 +50,7 @@ jobs:
4450
with:
4551
packages: build-essential bison flex clang protobuf-compiler libreadline8 libreadline-dev
4652
- name: Install pgrx
47-
run: cargo install cargo-pgrx --version 0.16.0 --locked
53+
run: cargo install cargo-pgrx --version 0.16.1 --locked
4854
if: steps.cache_pgrx.outputs.cache-hit != 'true'
4955
- run: cargo pgrx init
5056
if: steps.cache_pgrx.outputs.cache-hit != 'true'

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,15 +23,15 @@ pg_test = []
2323
[dependencies]
2424
etcd-client = { version = "0.16", features = ["tls"] }
2525
futures = "0.3.31"
26-
pgrx = {version="=0.16.0"}
27-
supabase-wrappers = {git="https://github.com/supabase/wrappers.git", branch="main",default-features = false}
26+
pgrx = {version="=0.16.1"}
27+
supabase-wrappers = { git="https://github.com/supabase/wrappers.git", branch="main", default-features = false }
2828
thiserror = "2.0.16"
2929
tokio = { version = "1.47.1", features = ["full"] }
3030
testcontainers = { version = "0.25.0", features = ["blocking"] }
3131
serde = { version = "1.0.226", features = ["derive"] }
3232

3333
[dev-dependencies]
34-
pgrx-tests = "=0.16.0"
34+
pgrx-tests = "=0.16.1"
3535
testcontainers = { version = "0.25.0", features = ["blocking"] }
3636
serde = { version = "1.0.226", features = ["derive"] }
3737

0 commit comments

Comments
 (0)