Skip to content

Commit 6219d06

Browse files
authored
Merge pull request #1178 from tcdi/v0.9.6-oob
prepare v0.9.6
2 parents 26ff87d + 9af6122 commit 6219d06

File tree

19 files changed

+539
-547
lines changed

19 files changed

+539
-547
lines changed

Cargo.lock

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

cargo-pgrx/Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cargo-pgrx"
3-
version = "0.9.5"
3+
version = "0.9.6"
44
authors = ["ZomboDB, LLC <[email protected]>"]
55
license = "MIT"
66
description = "Cargo subcommand for 'pgrx' to make Postgres extension development easy"
@@ -17,20 +17,20 @@ edition = "2021"
1717
atty = "0.2.14"
1818
cargo_metadata = "0.15.4"
1919
cargo_toml = "0.15.3"
20-
clap = { version = "4.3.3", features = [ "env", "suggestions", "cargo", "derive", "wrap_help" ] }
20+
clap = { version = "4.3.5", features = [ "env", "suggestions", "cargo", "derive", "wrap_help" ] }
2121
clap-cargo = { version = "0.10.0", features = [ "cargo_metadata" ] }
2222
semver = "1.0.17"
2323
owo-colors = { version = "3.5.0", features = [ "supports-colors" ] }
2424
env_proxy = "0.4.1"
2525
num_cpus = "1.15.0"
26-
pgrx-pg-config = { path = "../pgrx-pg-config", version = "=0.9.5" }
27-
pgrx-sql-entity-graph = { path = "../pgrx-sql-entity-graph", version = "=0.9.5" }
28-
prettyplease = "0.2.6"
26+
pgrx-pg-config = { path = "../pgrx-pg-config", version = "=0.9.6" }
27+
pgrx-sql-entity-graph = { path = "../pgrx-sql-entity-graph", version = "=0.9.6" }
28+
prettyplease = "0.2.8"
2929
proc-macro2 = { version = "1.0.60", features = [ "span-locations" ] }
3030
quote = "1.0.28"
3131
rayon = "1.7.0"
3232
regex = "1.8.4"
33-
ureq = "2.6.2"
33+
ureq = "2.7.1"
3434
url = "2.4.0"
3535
serde = { version = "1.0", features = [ "derive" ] }
3636
serde_derive = "1.0"

cargo-pgrx/src/templates/cargo_toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@ pg15 = ["pgrx/pg15", "pgrx-tests/pg15" ]
1616
pg_test = []
1717

1818
[dependencies]
19-
pgrx = "=0.9.5"
19+
pgrx = "=0.9.6"
2020

2121
[dev-dependencies]
22-
pgrx-tests = "=0.9.5"
22+
pgrx-tests = "=0.9.6"
2323

2424
[profile.dev]
2525
panic = "unwind"

nix/templates/default/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@ pg15 = ["pgrx/pg15", "pgrx-tests/pg15" ]
1616
pg_test = []
1717

1818
[dependencies]
19-
pgrx = "=0.9.5"
19+
pgrx = "=0.9.6"
2020

2121
[dev-dependencies]
22-
pgrx-tests = "=0.9.5"
22+
pgrx-tests = "=0.9.6"
2323
tempfile = "3.2.0"
2424
once_cell = "1.7.2"
2525

pgrx-examples/bad_ideas/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ pg_test = []
1818
[dependencies]
1919
pgrx = { path = "../../pgrx", default-features = false }
2020
rand = "0.8.5"
21-
ureq = "2.6.2"
21+
ureq = "2.7.1"
2222

2323
[dev-dependencies]
2424
pgrx-tests = { path = "../../pgrx-tests" }

pgrx-macros/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "pgrx-macros"
3-
version = "0.9.5"
3+
version = "0.9.6"
44
authors = ["ZomboDB, LLC <[email protected]>"]
55
license = "MIT"
66
description = "Proc Macros for 'pgrx'"
@@ -21,7 +21,7 @@ rustc-args = ["--cfg", "docsrs"]
2121
no-schema-generation = ["pgrx-sql-entity-graph/no-schema-generation"]
2222

2323
[dependencies]
24-
pgrx-sql-entity-graph = { path = "../pgrx-sql-entity-graph", version = "=0.9.5" }
24+
pgrx-sql-entity-graph = { path = "../pgrx-sql-entity-graph", version = "=0.9.6" }
2525
proc-macro2 = "1.0.60"
2626
quote = "1.0.28"
2727
syn = { version = "1.0.109", features = [ "extra-traits", "full", "fold", "parsing" ] }

pgrx-pg-config/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "pgrx-pg-config"
3-
version = "0.9.5"
3+
version = "0.9.6"
44
authors = ["ZomboDB, LLC <[email protected]>"]
55
license = "MIT"
66
description = "A Postgres pg_config wrapper for 'pgrx'"

pgrx-pg-sys/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "pgrx-pg-sys"
3-
version = "0.9.5"
3+
version = "0.9.6"
44
authors = ["ZomboDB, LLC <[email protected]>"]
55
license = "MIT"
66
description = "Generated Rust bindings for Postgres internals, for use with 'pgrx'"
@@ -29,16 +29,16 @@ rustdoc-args = ["--cfg", "docsrs"]
2929

3030
[dependencies]
3131
memoffset = "0.9.0"
32-
pgrx-macros = { path = "../pgrx-macros/", version = "=0.9.5" }
33-
pgrx-sql-entity-graph = { path = "../pgrx-sql-entity-graph/", version = "=0.9.5" }
32+
pgrx-macros = { path = "../pgrx-macros/", version = "=0.9.6" }
33+
pgrx-sql-entity-graph = { path = "../pgrx-sql-entity-graph/", version = "=0.9.6" }
3434
serde = { version = "1.0", features = [ "derive" ] } # impls on pub types
3535
# polyfill until #![feature(strict_provenance)] stabilizes
3636
sptr = "0.3"
3737
libc = "0.2"
3838

3939
[build-dependencies]
40-
bindgen = { version = "0.65.1", default-features = false, features = ["runtime"] }
41-
pgrx-pg-config= { path = "../pgrx-pg-config/", version = "=0.9.5" }
40+
bindgen = { version = "0.66.1", default-features = false, features = ["runtime"] }
41+
pgrx-pg-config= { path = "../pgrx-pg-config/", version = "=0.9.6" }
4242
proc-macro2 = "1.0.60"
4343
quote = "1.0.28"
4444
syn = { version = "1.0.109", features = [ "extra-traits", "full", "fold", "parsing" ] }

0 commit comments

Comments
 (0)