Skip to content

Commit

Permalink
Merge pull request #254 from supabase/or/pgrx-0-11-3
Browse files Browse the repository at this point in the history
Bump pgrx to 0.11.3 for 0.3.1 release
  • Loading branch information
olirice authored Apr 10, 2024
2 parents ec2fa29 + d26a871 commit 1185a47
Show file tree
Hide file tree
Showing 6 changed files with 25 additions and 31 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
extension_name:
- wrappers
pgrx_version:
- 0.11.2
- 0.11.3
postgres: [14, 15, 16]
features:
- "all_fdws"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test_supabase_wrappers.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
postgresql-server-dev-15
sudo chmod a+rwx `/usr/lib/postgresql/15/bin/pg_config --pkglibdir` `/usr/lib/postgresql/15/bin/pg_config --sharedir`/extension /var/run/postgresql/
- run: cargo install cargo-pgrx --version 0.11.2
- run: cargo install cargo-pgrx --version 0.11.3
- run: cargo pgrx init --pg15 /usr/lib/postgresql/15/bin/pg_config

- name: Format code
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test_wrappers.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
postgresql-server-dev-15
sudo chmod a+rwx `/usr/lib/postgresql/15/bin/pg_config --pkglibdir` `/usr/lib/postgresql/15/bin/pg_config --sharedir`/extension /var/run/postgresql/
- run: cargo install cargo-pgrx --version 0.11.2
- run: cargo install cargo-pgrx --version 0.11.3
- run: cargo pgrx init --pg15 /usr/lib/postgresql/15/bin/pg_config

- name: Format code
Expand Down
40 changes: 17 additions & 23 deletions Cargo.lock

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

4 changes: 2 additions & 2 deletions supabase-wrappers/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,14 @@ pg16 = ["pgrx/pg16", "pgrx-tests/pg16"]
pg_test = []

[dependencies]
pgrx = { version = "=0.11.2", default-features = false }
pgrx = { version = "=0.11.3", default-features = false }
thiserror = "1.0.48"
tokio = { version = "1.35", features = ["rt", "net"] }
uuid = { version = "1.2.2" }
supabase-wrappers-macros = { version = "0.1", path = "../supabase-wrappers-macros" }

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

[package.metadata.docs.rs]
features = ["pg15", "cshim"]
Expand Down
6 changes: 3 additions & 3 deletions wrappers/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wrappers"
version = "0.3.0"
version = "0.3.1"
edition = "2021"
publish = false

Expand Down Expand Up @@ -134,7 +134,7 @@ all_fdws = [
]

[dependencies]
pgrx = { version = "=0.11.2" }
pgrx = { version = "=0.11.3" }
#supabase-wrappers = "0.1"
supabase-wrappers = { path = "../supabase-wrappers", default-features = false }

Expand Down Expand Up @@ -204,4 +204,4 @@ redis = { version = "0.24.0", features = ["streams"], optional = true }
thiserror = { version = "1.0.48", optional = true }

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

0 comments on commit 1185a47

Please sign in to comment.