Skip to content

Commit b810e98

Browse files
authored
Update version to 0.12.4 (#1857)
1 parent 86c6a0f commit b810e98

File tree

13 files changed

+24
-26
lines changed

13 files changed

+24
-26
lines changed

Cargo.lock

+8-8
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+5-5
Original file line numberDiff line numberDiff line change
@@ -54,11 +54,11 @@ exclude = [
5454
cargo-pgrx = { path = "cargo-pgrx" }
5555

5656
[workspace.dependencies]
57-
pgrx-macros = { path = "./pgrx-macros", version = "=0.12.3" }
58-
pgrx-pg-sys = { path = "./pgrx-pg-sys", version = "=0.12.3" }
59-
pgrx-sql-entity-graph = { path = "./pgrx-sql-entity-graph", version = "=0.12.3" }
60-
pgrx-pg-config = { path = "./pgrx-pg-config", version = "=0.12.3" }
61-
pgrx-bindgen = { path = "./pgrx-bindgen", version = "0.12.3" }
57+
pgrx-macros = { path = "./pgrx-macros", version = "=0.12.4" }
58+
pgrx-pg-sys = { path = "./pgrx-pg-sys", version = "=0.12.4" }
59+
pgrx-sql-entity-graph = { path = "./pgrx-sql-entity-graph", version = "=0.12.4" }
60+
pgrx-pg-config = { path = "./pgrx-pg-config", version = "=0.12.4" }
61+
pgrx-bindgen = { path = "./pgrx-bindgen", version = "0.12.4" }
6262

6363
cargo_metadata = "0.18.0"
6464
cargo-edit = "0.12.2" # format-preserving edits to cargo.toml

cargo-pgrx/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
[package]
1212
name = "cargo-pgrx"
13-
version = "0.12.3"
13+
version = "0.12.4"
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

+2-2
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.12.3"
24+
pgrx = "=0.12.4"
2525

2626
[dev-dependencies]
27-
pgrx-tests = "=0.12.3"
27+
pgrx-tests = "=0.12.4"
2828

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

pgrx-bindgen/Cargo.toml

+1-1
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.12.3"
4+
version = "0.12.4"
55
edition = "2021"
66
license = "MIT"
77
homepage = "https://github.com/pgcentralfoundation/pgrx"

pgrx-macros/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

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

pgrx-pg-config/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

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

pgrx-pg-sys/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
[package]
1212
name = "pgrx-pg-sys"
13-
version = "0.12.3"
13+
version = "0.12.4"
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/pg16.rs

-1
Original file line numberDiff line numberDiff line change
@@ -36492,7 +36492,6 @@ extern "C" {
3649236492
pub fn MemoryContextDeleteChildren(context: MemoryContext);
3649336493
pub fn MemoryContextSetIdentifier(context: MemoryContext, id: *const ::core::ffi::c_char);
3649436494
pub fn MemoryContextSetParent(context: MemoryContext, new_parent: MemoryContext);
36495-
pub fn GetMemoryChunkContext(pointer: *mut ::core::ffi::c_void) -> MemoryContext;
3649636495
pub fn GetMemoryChunkSpace(pointer: *mut ::core::ffi::c_void) -> Size;
3649736496
pub fn MemoryContextGetParent(context: MemoryContext) -> MemoryContext;
3649836497
pub fn MemoryContextIsEmpty(context: MemoryContext) -> bool;

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

-1
Original file line numberDiff line numberDiff line change
@@ -38075,7 +38075,6 @@ extern "C" {
3807538075
pub fn MemoryContextDeleteChildren(context: MemoryContext);
3807638076
pub fn MemoryContextSetIdentifier(context: MemoryContext, id: *const ::core::ffi::c_char);
3807738077
pub fn MemoryContextSetParent(context: MemoryContext, new_parent: MemoryContext);
38078-
pub fn GetMemoryChunkContext(pointer: *mut ::core::ffi::c_void) -> MemoryContext;
3807938078
pub fn GetMemoryChunkSpace(pointer: *mut ::core::ffi::c_void) -> Size;
3808038079
pub fn MemoryContextGetParent(context: MemoryContext) -> MemoryContext;
3808138080
pub fn MemoryContextIsEmpty(context: MemoryContext) -> bool;

pgrx-sql-entity-graph/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
[package]
1212
name = "pgrx-sql-entity-graph"
13-
version = "0.12.3"
13+
version = "0.12.4"
1414
authors = ["PgCentral Foundation, Inc. <[email protected]>"]
1515
license = "MIT"
1616
description = "Sql Entity Graph for `pgrx`"

pgrx-tests/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
[package]
1212
name = "pgrx-tests"
13-
version = "0.12.3"
13+
version = "0.12.4"
1414
authors = ["PgCentral Foundation, Inc. <[email protected]>"]
1515
license = "MIT"
1616
description = "Test framework for 'pgrx'-based Postgres extensions"
@@ -72,7 +72,7 @@ rand = "0.8.5"
7272
[dependencies.pgrx] # Not unified in workspace due to default-features key
7373
path = "../pgrx"
7474
default-features = false
75-
version = "=0.12.3"
75+
version = "=0.12.4"
7676

7777
[dev-dependencies]
7878
eyre.workspace = true # testing functions that return `eyre::Result`

pgrx/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
[package]
1212
name = "pgrx"
13-
version = "0.12.3"
13+
version = "0.12.4"
1414
authors = ["PgCentral Foundation, Inc. <[email protected]>"]
1515
license = "MIT"
1616
description = "pgrx: A Rust framework for creating Postgres extensions"

0 commit comments

Comments
 (0)