Skip to content

Commit 44cae0d

Browse files
committed
bump to v0.9.7
1 parent 4d8db49 commit 44cae0d

File tree

10 files changed

+30
-30
lines changed

10 files changed

+30
-30
lines changed

Cargo.lock

Lines changed: 7 additions & 7 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: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cargo-pgrx"
3-
version = "0.9.6"
3+
version = "0.9.7"
44
authors = ["ZomboDB, LLC <[email protected]>"]
55
license = "MIT"
66
description = "Cargo subcommand for 'pgrx' to make Postgres extension development easy"
@@ -23,8 +23,8 @@ semver = "1.0.17"
2323
owo-colors = { version = "3.5.0", features = [ "supports-colors" ] }
2424
env_proxy = "0.4.1"
2525
num_cpus = "1.16.0"
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" }
26+
pgrx-pg-config = { path = "../pgrx-pg-config", version = "=0.9.7" }
27+
pgrx-sql-entity-graph = { path = "../pgrx-sql-entity-graph", version = "=0.9.7" }
2828
prettyplease = "0.2.9"
2929
proc-macro2 = { version = "1.0.63", features = [ "span-locations" ] }
3030
quote = "1.0.29"

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.6"
19+
pgrx = "=0.9.7"
2020

2121
[dev-dependencies]
22-
pgrx-tests = "=0.9.6"
22+
pgrx-tests = "=0.9.7"
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.6"
19+
pgrx = "=0.9.7"
2020

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

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.6"
3+
version = "0.9.7"
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.6" }
24+
pgrx-sql-entity-graph = { path = "../pgrx-sql-entity-graph", version = "=0.9.7" }
2525
proc-macro2 = "1.0.63"
2626
quote = "1.0.29"
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.6"
3+
version = "0.9.7"
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: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "pgrx-pg-sys"
3-
version = "0.9.6"
3+
version = "0.9.7"
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.6" }
33-
pgrx-sql-entity-graph = { path = "../pgrx-sql-entity-graph/", version = "=0.9.6" }
32+
pgrx-macros = { path = "../pgrx-macros/", version = "=0.9.7" }
33+
pgrx-sql-entity-graph = { path = "../pgrx-sql-entity-graph/", version = "=0.9.7" }
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]
4040
bindgen = { version = "0.66.1", default-features = false, features = ["runtime"] }
41-
pgrx-pg-config= { path = "../pgrx-pg-config/", version = "=0.9.6" }
41+
pgrx-pg-config= { path = "../pgrx-pg-config/", version = "=0.9.7" }
4242
proc-macro2 = "1.0.63"
4343
quote = "1.0.29"
4444
syn = { version = "1.0.109", features = [ "extra-traits", "full", "fold", "parsing" ] }

pgrx-sql-entity-graph/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-sql-entity-graph"
3-
version = "0.9.6"
3+
version = "0.9.7"
44
authors = ["ZomboDB, LLC <[email protected]>"]
55
license = "MIT"
66
description = "Sql Entity Graph for `pgrx`"

pgrx-tests/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "pgrx-tests"
3-
version = "0.9.6"
3+
version = "0.9.7"
44
authors = ["ZomboDB, LLC <[email protected]>"]
55
license = "MIT"
66
description = "Test framework for 'pgrx'-based Postgres extensions"
@@ -37,8 +37,8 @@ clap-cargo = "0.10.0"
3737
owo-colors = "3.5.0"
3838
once_cell = "1.18.0"
3939
libc = "0.2.147"
40-
pgrx-macros = { path = "../pgrx-macros", version = "=0.9.6" }
41-
pgrx-pg-config = { path = "../pgrx-pg-config", version = "=0.9.6" }
40+
pgrx-macros = { path = "../pgrx-macros", version = "=0.9.7" }
41+
pgrx-pg-config = { path = "../pgrx-pg-config", version = "=0.9.7" }
4242
postgres = "0.19.5"
4343
regex = "1.8.4"
4444
serde = "1.0"
@@ -53,4 +53,4 @@ eyre = "0.6.8" # testing functions that return `eyre::Result`
5353
[dependencies.pgrx]
5454
path = "../pgrx"
5555
default-features = false
56-
version = "=0.9.6"
56+
version = "=0.9.7"

pgrx/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "pgrx"
3-
version = "0.9.6"
3+
version = "0.9.7"
44
authors = ["ZomboDB, LLC <[email protected]>"]
55
license = "MIT"
66
description = "pgrx: A Rust framework for creating Postgres extensions"
@@ -33,9 +33,9 @@ no-default-features = true
3333
rustc-args = ["--cfg", "docsrs"]
3434

3535
[dependencies]
36-
pgrx-macros = { path = "../pgrx-macros", version = "=0.9.6" }
37-
pgrx-pg-sys = { path = "../pgrx-pg-sys", version = "=0.9.6" }
38-
pgrx-sql-entity-graph = { path = "../pgrx-sql-entity-graph", version = "=0.9.6" }
36+
pgrx-macros = { path = "../pgrx-macros", version = "=0.9.7" }
37+
pgrx-pg-sys = { path = "../pgrx-pg-sys", version = "=0.9.7" }
38+
pgrx-sql-entity-graph = { path = "../pgrx-sql-entity-graph", version = "=0.9.7" }
3939

4040
# used to internally impl things
4141
once_cell = "1.18.0" # polyfill until std::lazy::OnceCell stabilizes

0 commit comments

Comments
 (0)