Skip to content

Commit

Permalink
Prepare pgrx 0.12.0-beta.3 (#1779)
Browse files Browse the repository at this point in the history
Publicizes the `pgrx::callconv` API after pushing it to its final form.
workingjubilee authored Jul 16, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
1 parent c862427 commit b875b0b
Showing 9 changed files with 14 additions and 14 deletions.
8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -51,10 +51,10 @@ members = [
cargo-pgrx = { path = "cargo-pgrx" }

[workspace.dependencies]
pgrx-macros = { path = "./pgrx-macros", version = "=0.12.0-beta.2" }
pgrx-pg-sys = { path = "./pgrx-pg-sys", version = "=0.12.0-beta.2" }
pgrx-sql-entity-graph = { path = "./pgrx-sql-entity-graph", version = "=0.12.0-beta.2" }
pgrx-pg-config = { path = "./pgrx-pg-config", version = "=0.12.0-beta.2" }
pgrx-macros = { path = "./pgrx-macros", version = "=0.12.0-beta.3" }
pgrx-pg-sys = { path = "./pgrx-pg-sys", version = "=0.12.0-beta.3" }
pgrx-sql-entity-graph = { path = "./pgrx-sql-entity-graph", version = "=0.12.0-beta.3" }
pgrx-pg-config = { path = "./pgrx-pg-config", version = "=0.12.0-beta.3" }

cargo_metadata = "0.18.0"
cargo-edit = "0.12.2" # format-preserving edits to cargo.toml
2 changes: 1 addition & 1 deletion cargo-pgrx/Cargo.toml
Original file line number Diff line number Diff line change
@@ -10,7 +10,7 @@

[package]
name = "cargo-pgrx"
version = "0.12.0-beta.2"
version = "0.12.0-beta.3"
authors = ["PgCentral Foundation, Inc. <[email protected]>"]
license = "MIT"
description = "Cargo subcommand for 'pgrx' to make Postgres extension development easy"
4 changes: 2 additions & 2 deletions cargo-pgrx/src/templates/cargo_toml
Original file line number Diff line number Diff line change
@@ -20,10 +20,10 @@ pg16 = ["pgrx/pg16", "pgrx-tests/pg16" ]
pg_test = []

[dependencies]
pgrx = "=0.12.0-beta.2"
pgrx = "=0.12.0-beta.3"

[dev-dependencies]
pgrx-tests = "=0.12.0-beta.2"
pgrx-tests = "=0.12.0-beta.3"

[profile.dev]
panic = "unwind"
2 changes: 1 addition & 1 deletion pgrx-macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -10,7 +10,7 @@

[package]
name = "pgrx-macros"
version = "0.12.0-beta.2"
version = "0.12.0-beta.3"
authors = ["PgCentral Foundation, Inc. <[email protected]>"]
license = "MIT"
description = "Proc Macros for 'pgrx'"
2 changes: 1 addition & 1 deletion pgrx-pg-config/Cargo.toml
Original file line number Diff line number Diff line change
@@ -10,7 +10,7 @@

[package]
name = "pgrx-pg-config"
version = "0.12.0-beta.2"
version = "0.12.0-beta.3"
authors = ["PgCentral Foundation, Inc. <[email protected]>"]
license = "MIT"
description = "A Postgres pg_config wrapper for 'pgrx'"
2 changes: 1 addition & 1 deletion pgrx-pg-sys/Cargo.toml
Original file line number Diff line number Diff line change
@@ -10,7 +10,7 @@

[package]
name = "pgrx-pg-sys"
version = "0.12.0-beta.2"
version = "0.12.0-beta.3"
authors = ["PgCentral Foundation, Inc. <[email protected]>"]
license = "MIT"
description = "Generated Rust bindings for Postgres internals, for use with 'pgrx'"
2 changes: 1 addition & 1 deletion pgrx-sql-entity-graph/Cargo.toml
Original file line number Diff line number Diff line change
@@ -10,7 +10,7 @@

[package]
name = "pgrx-sql-entity-graph"
version = "0.12.0-beta.2"
version = "0.12.0-beta.3"
authors = ["PgCentral Foundation, Inc. <[email protected]>"]
license = "MIT"
description = "Sql Entity Graph for `pgrx`"
4 changes: 2 additions & 2 deletions pgrx-tests/Cargo.toml
Original file line number Diff line number Diff line change
@@ -10,7 +10,7 @@

[package]
name = "pgrx-tests"
version = "0.12.0-beta.2"
version = "0.12.0-beta.3"
authors = ["PgCentral Foundation, Inc. <[email protected]>"]
license = "MIT"
description = "Test framework for 'pgrx'-based Postgres extensions"
@@ -71,7 +71,7 @@ rand = "0.8.5"
[dependencies.pgrx] # Not unified in workspace due to default-features key
path = "../pgrx"
default-features = false
version = "=0.12.0-beta.2"
version = "=0.12.0-beta.3"

[dev-dependencies]
eyre.workspace = true # testing functions that return `eyre::Result`
2 changes: 1 addition & 1 deletion pgrx/Cargo.toml
Original file line number Diff line number Diff line change
@@ -10,7 +10,7 @@

[package]
name = "pgrx"
version = "0.12.0-beta.2"
version = "0.12.0-beta.3"
authors = ["PgCentral Foundation, Inc. <[email protected]>"]
license = "MIT"
description = "pgrx: A Rust framework for creating Postgres extensions"

0 comments on commit b875b0b

Please sign in to comment.