Skip to content

Commit b1868d8

Browse files
authored
Update version to 0.14.1 (#2042)
This is pgrx v0.14.1. It is a small bugfix release that fixes a problem building extensions that have their own `build.rs`. Please update with `cargo install cargo-pgrx --version 0.14.1 --locked` and update your extension `Cargo.toml` files with `cargo pgrx upgrade`. ## What's Changed * fix `cargo pgrx install` error if there is a build script by @usamoi in #2041 **Full Changelog**: v0.14.0...v0.14.1
1 parent 0d5ccae commit b1868d8

File tree

11 files changed

+24
-24
lines changed

11 files changed

+24
-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.14.0" }
59-
pgrx-pg-sys = { path = "./pgrx-pg-sys", version = "=0.14.0" }
60-
pgrx-sql-entity-graph = { path = "./pgrx-sql-entity-graph", version = "=0.14.0" }
61-
pgrx-pg-config = { path = "./pgrx-pg-config", version = "=0.14.0" }
62-
pgrx-bindgen = { path = "./pgrx-bindgen", version = "=0.14.0" }
58+
pgrx-macros = { path = "./pgrx-macros", version = "=0.14.1" }
59+
pgrx-pg-sys = { path = "./pgrx-pg-sys", version = "=0.14.1" }
60+
pgrx-sql-entity-graph = { path = "./pgrx-sql-entity-graph", version = "=0.14.1" }
61+
pgrx-pg-config = { path = "./pgrx-pg-config", version = "=0.14.1" }
62+
pgrx-bindgen = { path = "./pgrx-bindgen", version = "=0.14.1" }
6363

6464
cargo_metadata = "0.18.0"
6565
cargo-edit = "=0.13.2" # 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.14.0"
13+
version = "0.14.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
@@ -20,10 +20,10 @@ pg17 = ["pgrx/pg17", "pgrx-tests/pg17" ]
2020
pg_test = []
2121

2222
[dependencies]
23-
pgrx = "=0.14.0"
23+
pgrx = "=0.14.1"
2424

2525
[dev-dependencies]
26-
pgrx-tests = "=0.14.0"
26+
pgrx-tests = "=0.14.1"
2727

2828
[profile.dev]
2929
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.14.0"
4+
version = "0.14.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.14.0"
13+
version = "0.14.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.14.0"
13+
version = "0.14.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.14.0"
13+
version = "0.14.1"
1414
authors = ["PgCentral Foundation, Inc. <[email protected]>"]
1515
license = "MIT"
1616
description = "Generated Rust bindings for Postgres internals, for use with 'pgrx'"

pgrx-sql-entity-graph/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-sql-entity-graph"
13-
version = "0.14.0"
13+
version = "0.14.1"
1414
authors = ["PgCentral Foundation, Inc. <[email protected]>"]
1515
license = "MIT"
1616
description = "Sql Entity Graph for `pgrx`"

pgrx-tests/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
[package]
1212
name = "pgrx-tests"
13-
version = "0.14.0"
13+
version = "0.14.1"
1414
authors = ["PgCentral Foundation, Inc. <[email protected]>"]
1515
license = "MIT"
1616
description = "Test framework for 'pgrx'-based Postgres extensions"
@@ -76,7 +76,7 @@ rand = "0.9.0"
7676
[dependencies.pgrx] # Not unified in workspace due to default-features key
7777
path = "../pgrx"
7878
default-features = false
79-
version = "=0.14.0"
79+
version = "=0.14.1"
8080

8181
[target.'cfg(target_os = "windows")'.dependencies]
8282
winapi = { version = "0.3.9", features = [

0 commit comments

Comments
 (0)