Skip to content

Commit

Permalink
Merge pull request #139 from supabase/chore/bump-pgrx-version
Browse files Browse the repository at this point in the history
bump pgrx version to 0.9.8
  • Loading branch information
imor authored Sep 5, 2023
2 parents e0aee56 + c69467d commit cc6f4e4
Show file tree
Hide file tree
Showing 7 changed files with 66 additions and 52 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
extension_name:
- wrappers
pgrx_version:
- 0.9.7
- 0.9.8
postgres: [14, 15]
features:
- "all_fdws"
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,6 +44,6 @@ 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.9.7
- run: cargo install cargo-pgrx --version 0.9.8
- run: cargo pgrx init --pg15 /usr/lib/postgresql/15/bin/pg_config
- run: cd wrappers && cargo pgrx test --features all_fdws,pg15
79 changes: 46 additions & 33 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 @@ -21,13 +21,13 @@ pg15 = ["pgrx/pg15", "pgrx-tests/pg15" ]
pg_test = []

[dependencies]
pgrx = {version = "=0.9.7", default-features = false }
pgrx = {version = "=0.9.8", default-features = false }
tokio = { version = "1.24", features = ["rt"] }
uuid = { version = "1.2.2" }
supabase-wrappers-macros = { version = "0.1", path = "../supabase-wrappers-macros" }

[dev-dependencies]
pgrx-tests = "=0.9.7"
pgrx-tests = "=0.9.8"

[package.metadata.docs.rs]
features = ["pg15", "cshim"]
Expand Down
2 changes: 1 addition & 1 deletion supabase-wrappers/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
//! ...
//!
//! [dependencies]
//! pgrx = "=0.9.7"
//! pgrx = "=0.9.8"
//! supabase-wrappers = "0.1"
//! ```
//!
Expand Down
25 changes: 13 additions & 12 deletions wrappers/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 wrappers/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ logflare_fdw = ["reqwest", "reqwest-middleware", "reqwest-retry", "serde_json"]
all_fdws = ["airtable_fdw", "bigquery_fdw", "clickhouse_fdw", "stripe_fdw", "firebase_fdw", "s3_fdw", "logflare_fdw"]

[dependencies]
pgrx = { version = "=0.9.7" }
pgrx = { version = "=0.9.8" }
cfg-if = "1.0"
#supabase-wrappers = "0.1"
supabase-wrappers = { path = "../supabase-wrappers", default-features = false }
Expand Down Expand Up @@ -74,7 +74,7 @@ parquet = { version = "41.0.0", features = ["async"], optional = true }
arrow-array = { version = "41.0.0", optional = true }

[dev-dependencies]
pgrx-tests = "=0.9.7"
pgrx-tests = "=0.9.8"

[profile.dev]
panic = "unwind"
Expand Down

0 comments on commit cc6f4e4

Please sign in to comment.