Skip to content

Commit fa67cda

Browse files
committed
Update version to 0.19.0
1 parent c6e40f7 commit fa67cda

22 files changed

Lines changed: 776 additions & 498 deletions

File tree

Cargo.lock

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

Cargo.toml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -37,18 +37,18 @@ repository = "https://github.com/pgcentralfoundation/pgrx/"
3737
homepage = "https://github.com/pgcentralfoundation/pgrx/"
3838
# TODO: all crates should use this version rather than copy it
3939
# See https://github.com/pgcentralfoundation/pgrx/pull/2100 comments
40-
version = "0.18.1"
40+
version = "0.19.0"
4141

4242
[workspace.metadata.local-install]
4343
cargo-pgrx = { path = "cargo-pgrx" }
4444

4545
[workspace.dependencies]
46-
pgrx-bench = { path = "./pgrx-bench", version = "=0.18.1" }
47-
pgrx-macros = { path = "./pgrx-macros", version = "=0.18.1" }
48-
pgrx-pg-sys = { path = "./pgrx-pg-sys", version = "=0.18.1" }
49-
pgrx-sql-entity-graph = { path = "./pgrx-sql-entity-graph", version = "=0.18.1" }
50-
pgrx-pg-config = { path = "./pgrx-pg-config", version = "=0.18.1" }
51-
pgrx-bindgen = { path = "./pgrx-bindgen", version = "=0.18.1" }
46+
pgrx-bench = { path = "./pgrx-bench", version = "=0.19.0" }
47+
pgrx-macros = { path = "./pgrx-macros", version = "=0.19.0" }
48+
pgrx-pg-sys = { path = "./pgrx-pg-sys", version = "=0.19.0" }
49+
pgrx-sql-entity-graph = { path = "./pgrx-sql-entity-graph", version = "=0.19.0" }
50+
pgrx-pg-config = { path = "./pgrx-pg-config", version = "=0.19.0" }
51+
pgrx-bindgen = { path = "./pgrx-bindgen", version = "=0.19.0" }
5252

5353
cargo_metadata = "0.23.1"
5454
cargo_toml = "0.22" # used for building projects

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.18.1"
13+
version = "0.19.0"
1414
authors.workspace = true
1515
license.workspace = true
1616
description = "Cargo subcommand for 'pgrx' to make Postgres extension development easy"

cargo-pgrx/src/templates/cargo_toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,15 +19,15 @@ pg_test = []
1919
pg_bench = ["dep:pgrx-bench"]
2020

2121
[dependencies]
22-
pgrx = "=0.18.1"
22+
pgrx = "=0.19.0"
2323

2424
[dependencies.pgrx-bench]
25-
version = "=0.18.1"
25+
version = "=0.19.0"
2626
optional = true
2727

2828
[dev-dependencies]
2929
[dev-dependencies.pgrx-tests]
30-
version = "=0.18.1"
30+
version = "=0.19.0"
3131

3232
[profile.dev]
3333
panic = "unwind"

cargo-pgrx/tests/fixtures/workspace/Cargo.toml

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,12 @@ members = ["hello"]
55
[workspace.package]
66
edition = "2024"
77
rust-version = "1.96"
8+
version = "0.19.0"
89

910
[workspace.dependencies]
10-
pgrx = "=0.18.0"
11-
pgrx-bench = "=0.18.0"
12-
pgrx-macros = "=0.18.0"
13-
pgrx-pg-sys = "=0.18.0"
14-
pgrx-sql-entity-graph = { version = "=0.18.0" }
15-
pgrx-pg-config = { version = "=0.18.0" }
11+
pgrx = "=0.19.0"
12+
pgrx-bench = "=0.19.0"
13+
pgrx-macros = "=0.19.0"
14+
pgrx-pg-sys = "=0.19.0"
15+
pgrx-sql-entity-graph = { version = "=0.19.0" }
16+
pgrx-pg-config = { version = "=0.19.0" }

cargo-pgrx/tests/fixtures/workspace/hello/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "hello"
3-
version = "0.0.0"
3+
version = "0.19.0"
44
edition.workspace = true
55
rust-version.workspace = true
66

@@ -27,7 +27,7 @@ workspace = true
2727

2828
[dev-dependencies]
2929
[dev-dependencies.pgrx-tests]
30-
version = "=0.18.0"
30+
version = "=0.19.0"
3131

3232
[profile.dev]
3333
panic = "unwind"

pgrx-bench/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-bench"
13-
version = "0.18.1"
13+
version = "0.19.0"
1414
authors.workspace = true
1515
license.workspace = true
1616
description = "Benchmark runtime support for pgrx extensions"

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.18.1"
4+
version = "0.19.0"
55
edition.workspace = true
66
rust-version.workspace = true
77
license.workspace = true

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.18.1"
13+
version = "0.19.0"
1414
authors.workspace = true
1515
license.workspace = true
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.18.1"
13+
version = "0.19.0"
1414
authors.workspace = true
1515
license.workspace = true
1616
description = "A Postgres pg_config wrapper for 'pgrx'"

0 commit comments

Comments
 (0)