Skip to content

Commit 98e70fc

Browse files
authored
Update version to 0.13.1 (#1992)
1 parent c961267 commit 98e70fc

File tree

17 files changed

+51
-24
lines changed

17 files changed

+51
-24
lines changed

Cargo.lock

Lines changed: 8 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -55,11 +55,11 @@ exclude = [
5555
cargo-pgrx = { path = "cargo-pgrx" }
5656

5757
[workspace.dependencies]
58-
pgrx-macros = { path = "./pgrx-macros", version = "=0.13.0" }
59-
pgrx-pg-sys = { path = "./pgrx-pg-sys", version = "=0.13.0" }
60-
pgrx-sql-entity-graph = { path = "./pgrx-sql-entity-graph", version = "=0.13.0" }
61-
pgrx-pg-config = { path = "./pgrx-pg-config", version = "=0.13.0" }
62-
pgrx-bindgen = { path = "./pgrx-bindgen", version = "=0.13.0" }
58+
pgrx-macros = { path = "./pgrx-macros", version = "=0.13.1" }
59+
pgrx-pg-sys = { path = "./pgrx-pg-sys", version = "=0.13.1" }
60+
pgrx-sql-entity-graph = { path = "./pgrx-sql-entity-graph", version = "=0.13.1" }
61+
pgrx-pg-config = { path = "./pgrx-pg-config", version = "=0.13.1" }
62+
pgrx-bindgen = { path = "./pgrx-bindgen", version = "=0.13.1" }
6363

6464
cargo_metadata = "0.18.0"
6565
cargo-edit = "0.13.1" # format-preserving edits to cargo.toml

cargo-pgrx/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
[package]
1212
name = "cargo-pgrx"
13-
version = "0.13.0"
13+
version = "0.13.1"
1414
authors = ["PgCentral Foundation, Inc. <[email protected]>"]
1515
license = "MIT"
1616
description = "Cargo subcommand for 'pgrx' to make Postgres extension development easy"

cargo-pgrx/src/templates/cargo_toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@ pg17 = ["pgrx/pg17", "pgrx-tests/pg17" ]
2121
pg_test = []
2222

2323
[dependencies]
24-
pgrx = "=0.13.0"
24+
pgrx = "=0.13.1"
2525

2626
[dev-dependencies]
27-
pgrx-tests = "=0.13.0"
27+
pgrx-tests = "=0.13.1"
2828

2929
[profile.dev]
3030
panic = "unwind"

pgrx-bindgen/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "pgrx-bindgen"
33
description = "additional bindgen support for pgrx"
4-
version = "0.13.0"
4+
version = "0.13.1"
55
edition = "2021"
66
license = "MIT"
77
homepage = "https://github.com/pgcentralfoundation/pgrx"

pgrx-macros/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
[package]
1212
name = "pgrx-macros"
13-
version = "0.13.0"
13+
version = "0.13.1"
1414
authors = ["PgCentral Foundation, Inc. <[email protected]>"]
1515
license = "MIT"
1616
description = "Proc Macros for 'pgrx'"

pgrx-pg-config/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
[package]
1212
name = "pgrx-pg-config"
13-
version = "0.13.0"
13+
version = "0.13.1"
1414
authors = ["PgCentral Foundation, Inc. <[email protected]>"]
1515
license = "MIT"
1616
description = "A Postgres pg_config wrapper for 'pgrx'"

pgrx-pg-sys/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
[package]
1212
name = "pgrx-pg-sys"
13-
version = "0.13.0"
13+
version = "0.13.1"
1414
authors = ["PgCentral Foundation, Inc. <[email protected]>"]
1515
license = "MIT"
1616
description = "Generated Rust bindings for Postgres internals, for use with 'pgrx'"

pgrx-pg-sys/src/include/pg12.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37948,6 +37948,8 @@ unsafe extern "C" {
3794837948
ctx: *mut LogicalDecodingContext,
3794937949
origin_id: RepOriginId,
3795037950
) -> bool;
37951+
pub fn ApplyWorkerMain(main_arg: Datum);
37952+
pub fn IsLogicalWorker() -> bool;
3795137953
pub fn QueryRewrite(parsetree: *mut Query) -> *mut List;
3795237954
pub fn AcquireRewriteLocks(parsetree: *mut Query, forExecute: bool, forUpdatePushedDown: bool);
3795337955
pub fn build_column_default(rel: Relation, attrno: ::core::ffi::c_int) -> *mut Node;

pgrx-pg-sys/src/include/pg13.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39256,6 +39256,8 @@ unsafe extern "C" {
3925639256
ctx: *mut LogicalDecodingContext,
3925739257
origin_id: RepOriginId,
3925839258
) -> bool;
39259+
pub fn ApplyWorkerMain(main_arg: Datum);
39260+
pub fn IsLogicalWorker() -> bool;
3925939261
pub fn QueryRewrite(parsetree: *mut Query) -> *mut List;
3926039262
pub fn AcquireRewriteLocks(parsetree: *mut Query, forExecute: bool, forUpdatePushedDown: bool);
3926139263
pub fn build_column_default(rel: Relation, attrno: ::core::ffi::c_int) -> *mut Node;

0 commit comments

Comments
 (0)