Skip to content

Commit

Permalink
Update version to 0.13.1 (#1992)
Browse files Browse the repository at this point in the history
  • Loading branch information
eeeebbbbrrrr authored Mar 1, 2025
1 parent c961267 commit 98e70fc
Show file tree
Hide file tree
Showing 17 changed files with 51 additions and 24 deletions.
16 changes: 8 additions & 8 deletions Cargo.lock

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

10 changes: 5 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -55,11 +55,11 @@ exclude = [
cargo-pgrx = { path = "cargo-pgrx" }

[workspace.dependencies]
pgrx-macros = { path = "./pgrx-macros", version = "=0.13.0" }
pgrx-pg-sys = { path = "./pgrx-pg-sys", version = "=0.13.0" }
pgrx-sql-entity-graph = { path = "./pgrx-sql-entity-graph", version = "=0.13.0" }
pgrx-pg-config = { path = "./pgrx-pg-config", version = "=0.13.0" }
pgrx-bindgen = { path = "./pgrx-bindgen", version = "=0.13.0" }
pgrx-macros = { path = "./pgrx-macros", version = "=0.13.1" }
pgrx-pg-sys = { path = "./pgrx-pg-sys", version = "=0.13.1" }
pgrx-sql-entity-graph = { path = "./pgrx-sql-entity-graph", version = "=0.13.1" }
pgrx-pg-config = { path = "./pgrx-pg-config", version = "=0.13.1" }
pgrx-bindgen = { path = "./pgrx-bindgen", version = "=0.13.1" }

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

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

[dependencies]
pgrx = "=0.13.0"
pgrx = "=0.13.1"

[dev-dependencies]
pgrx-tests = "=0.13.0"
pgrx-tests = "=0.13.1"

[profile.dev]
panic = "unwind"
Expand Down
2 changes: 1 addition & 1 deletion pgrx-bindgen/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "pgrx-bindgen"
description = "additional bindgen support for pgrx"
version = "0.13.0"
version = "0.13.1"
edition = "2021"
license = "MIT"
homepage = "https://github.com/pgcentralfoundation/pgrx"
Expand Down
2 changes: 1 addition & 1 deletion pgrx-macros/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

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

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

[package]
name = "pgrx-pg-sys"
version = "0.13.0"
version = "0.13.1"
authors = ["PgCentral Foundation, Inc. <[email protected]>"]
license = "MIT"
description = "Generated Rust bindings for Postgres internals, for use with 'pgrx'"
Expand Down
2 changes: 2 additions & 0 deletions pgrx-pg-sys/src/include/pg12.rs
Original file line number Diff line number Diff line change
Expand Up @@ -37948,6 +37948,8 @@ unsafe extern "C" {
ctx: *mut LogicalDecodingContext,
origin_id: RepOriginId,
) -> bool;
pub fn ApplyWorkerMain(main_arg: Datum);
pub fn IsLogicalWorker() -> bool;
pub fn QueryRewrite(parsetree: *mut Query) -> *mut List;
pub fn AcquireRewriteLocks(parsetree: *mut Query, forExecute: bool, forUpdatePushedDown: bool);
pub fn build_column_default(rel: Relation, attrno: ::core::ffi::c_int) -> *mut Node;
Expand Down
2 changes: 2 additions & 0 deletions pgrx-pg-sys/src/include/pg13.rs
Original file line number Diff line number Diff line change
Expand Up @@ -39256,6 +39256,8 @@ unsafe extern "C" {
ctx: *mut LogicalDecodingContext,
origin_id: RepOriginId,
) -> bool;
pub fn ApplyWorkerMain(main_arg: Datum);
pub fn IsLogicalWorker() -> bool;
pub fn QueryRewrite(parsetree: *mut Query) -> *mut List;
pub fn AcquireRewriteLocks(parsetree: *mut Query, forExecute: bool, forUpdatePushedDown: bool);
pub fn build_column_default(rel: Relation, attrno: ::core::ffi::c_int) -> *mut Node;
Expand Down
2 changes: 2 additions & 0 deletions pgrx-pg-sys/src/include/pg14.rs
Original file line number Diff line number Diff line change
Expand Up @@ -41672,6 +41672,8 @@ unsafe extern "C" {
) -> bool;
pub fn ResetLogicalStreamingState();
pub fn UpdateDecodingStats(ctx: *mut LogicalDecodingContext);
pub fn ApplyWorkerMain(main_arg: Datum);
pub fn IsLogicalWorker() -> bool;
pub fn QueryRewrite(parsetree: *mut Query) -> *mut List;
pub fn AcquireRewriteLocks(parsetree: *mut Query, forExecute: bool, forUpdatePushedDown: bool);
pub fn build_column_default(rel: Relation, attrno: ::core::ffi::c_int) -> *mut Node;
Expand Down
2 changes: 2 additions & 0 deletions pgrx-pg-sys/src/include/pg15.rs
Original file line number Diff line number Diff line change
Expand Up @@ -42189,6 +42189,8 @@ unsafe extern "C" {
) -> bool;
pub fn ResetLogicalStreamingState();
pub fn UpdateDecodingStats(ctx: *mut LogicalDecodingContext);
pub fn ApplyWorkerMain(main_arg: Datum);
pub fn IsLogicalWorker() -> bool;
pub fn QueryRewrite(parsetree: *mut Query) -> *mut List;
pub fn AcquireRewriteLocks(parsetree: *mut Query, forExecute: bool, forUpdatePushedDown: bool);
pub fn build_column_default(rel: Relation, attrno: ::core::ffi::c_int) -> *mut Node;
Expand Down
9 changes: 9 additions & 0 deletions pgrx-pg-sys/src/include/pg16.rs
Original file line number Diff line number Diff line change
Expand Up @@ -43233,6 +43233,15 @@ unsafe extern "C" {
) -> bool;
pub fn ResetLogicalStreamingState();
pub fn UpdateDecodingStats(ctx: *mut LogicalDecodingContext);
pub static mut ParallelApplyMessagePending: sig_atomic_t;
pub fn ApplyWorkerMain(main_arg: Datum);
pub fn ParallelApplyWorkerMain(main_arg: Datum);
pub fn IsLogicalWorker() -> bool;
pub fn IsLogicalParallelApplyWorker() -> bool;
pub fn HandleParallelApplyMessageInterrupt();
pub fn HandleParallelApplyMessages();
pub fn LogicalRepWorkersWakeupAtCommit(subid: Oid);
pub fn AtEOXact_LogicalRepWorkers(isCommit: bool);
pub fn QueryRewrite(parsetree: *mut Query) -> *mut List;
pub fn AcquireRewriteLocks(parsetree: *mut Query, forExecute: bool, forUpdatePushedDown: bool);
pub fn build_column_default(rel: Relation, attrno: ::core::ffi::c_int) -> *mut Node;
Expand Down
10 changes: 10 additions & 0 deletions pgrx-pg-sys/src/include/pg17.rs
Original file line number Diff line number Diff line change
Expand Up @@ -44534,6 +44534,16 @@ unsafe extern "C" {
moveto: XLogRecPtr,
found_consistent_snapshot: *mut bool,
) -> XLogRecPtr;
pub static mut ParallelApplyMessagePending: sig_atomic_t;
pub fn ApplyWorkerMain(main_arg: Datum);
pub fn ParallelApplyWorkerMain(main_arg: Datum);
pub fn TablesyncWorkerMain(main_arg: Datum);
pub fn IsLogicalWorker() -> bool;
pub fn IsLogicalParallelApplyWorker() -> bool;
pub fn HandleParallelApplyMessageInterrupt();
pub fn HandleParallelApplyMessages();
pub fn LogicalRepWorkersWakeupAtCommit(subid: Oid);
pub fn AtEOXact_LogicalRepWorkers(isCommit: bool);
pub fn QueryRewrite(parsetree: *mut Query) -> *mut List;
pub fn AcquireRewriteLocks(parsetree: *mut Query, forExecute: bool, forUpdatePushedDown: bool);
pub fn build_column_default(rel: Relation, attrno: ::core::ffi::c_int) -> *mut Node;
Expand Down
2 changes: 1 addition & 1 deletion pgrx-sql-entity-graph/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

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

[package]
name = "pgrx-tests"
version = "0.13.0"
version = "0.13.1"
authors = ["PgCentral Foundation, Inc. <[email protected]>"]
license = "MIT"
description = "Test framework for 'pgrx'-based Postgres extensions"
Expand Down Expand Up @@ -73,7 +73,7 @@ rand = "0.9.0"
[dependencies.pgrx] # Not unified in workspace due to default-features key
path = "../pgrx"
default-features = false
version = "=0.13.0"
version = "=0.13.1"

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

[package]
name = "pgrx"
version = "0.13.0"
version = "0.13.1"
authors = ["PgCentral Foundation, Inc. <[email protected]>"]
license = "MIT"
description = "pgrx: A Rust framework for creating Postgres extensions"
Expand Down

0 comments on commit 98e70fc

Please sign in to comment.