Skip to content

Commit 4b9467a

Browse files
authored
Update version to 0.7.1 (#1030)
1 parent a71f8cc commit 4b9467a

File tree

15 files changed

+16673
-19212
lines changed

15 files changed

+16673
-19212
lines changed

Cargo.lock

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

cargo-pgx/Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cargo-pgx"
3-
version = "0.7.0"
3+
version = "0.7.1"
44
authors = ["ZomboDB, LLC <[email protected]>"]
55
license = "MIT"
66
description = "Cargo subcommand for 'pgx' to make Postgres extension development easy"
@@ -15,16 +15,16 @@ edition = "2021"
1515

1616
[dependencies]
1717
atty = "0.2.14"
18-
cargo_metadata = "0.15.2"
18+
cargo_metadata = "0.15.3"
1919
cargo_toml = "0.11.8"
2020
clap = { version = "4.1.4", features = [ "env", "suggestions", "cargo", "derive", "wrap_help" ] }
2121
clap-cargo = { version = "0.10.0", features = [ "cargo_metadata" ] }
2222
semver = "1.0.16"
2323
owo-colors = { version = "3.5.0", features = [ "supports-colors" ] }
2424
env_proxy = "0.4.1"
2525
num_cpus = "1.15.0"
26-
pgx-pg-config = { path = "../pgx-pg-config", version = "=0.7.0" }
27-
pgx-sql-entity-graph = { path = "../pgx-sql-entity-graph", version = "=0.7.0" }
26+
pgx-pg-config = { path = "../pgx-pg-config", version = "=0.7.1" }
27+
pgx-sql-entity-graph = { path = "../pgx-sql-entity-graph", version = "=0.7.1" }
2828
prettyplease = "0.1.23"
2929
proc-macro2 = { version = "1.0.50", features = [ "span-locations" ] }
3030
quote = "1.0.23"

cargo-pgx/src/templates/cargo_toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@ pg15 = ["pgx/pg15", "pgx-tests/pg15" ]
1616
pg_test = []
1717

1818
[dependencies]
19-
pgx = "=0.7.0"
19+
pgx = "=0.7.1"
2020

2121
[dev-dependencies]
22-
pgx-tests = "=0.7.0"
22+
pgx-tests = "=0.7.1"
2323

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

nix/templates/default/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@ pg15 = ["pgx/pg15", "pgx-tests/pg15" ]
1616
pg_test = []
1717

1818
[dependencies]
19-
pgx = "=0.7.0"
19+
pgx = "=0.7.1"
2020

2121
[dev-dependencies]
22-
pgx-tests = "=0.7.0"
22+
pgx-tests = "=0.7.1"
2323
tempfile = "3.2.0"
2424
once_cell = "1.7.2"
2525

pgx-macros/Cargo.toml

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

2323
[dependencies]
24-
pgx-sql-entity-graph = { path = "../pgx-sql-entity-graph", version = "=0.7.0" }
24+
pgx-sql-entity-graph = { path = "../pgx-sql-entity-graph", version = "=0.7.1" }
2525
proc-macro2 = "1.0.50"
2626
quote = "1.0.23"
2727
syn = { version = "1.0.107", features = [ "extra-traits", "full", "fold", "parsing" ] }

pgx-pg-config/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "pgx-pg-config"
3-
version = "0.7.0"
3+
version = "0.7.1"
44
authors = ["ZomboDB, LLC <[email protected]>"]
55
license = "MIT"
66
description = "A Postgres pg_config wrapper for 'pgx'"

pgx-pg-sys/Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "pgx-pg-sys"
3-
version = "0.7.0"
3+
version = "0.7.1"
44
authors = ["ZomboDB, LLC <[email protected]>"]
55
license = "MIT"
66
description = "Generated Rust bindings for Postgres internals, for use with 'pgx'"
@@ -30,16 +30,16 @@ rustdoc-args = ["--cfg", "docsrs"]
3030

3131
[dependencies]
3232
memoffset = "0.6.5"
33-
pgx-macros = { path = "../pgx-macros/", version = "=0.7.0" }
34-
pgx-sql-entity-graph = { path = "../pgx-sql-entity-graph/", version = "=0.7.0" }
33+
pgx-macros = { path = "../pgx-macros/", version = "=0.7.1" }
34+
pgx-sql-entity-graph = { path = "../pgx-sql-entity-graph/", version = "=0.7.1" }
3535
serde = { version = "1.0.152", features = [ "derive" ] } # impls on pub types
3636
# polyfill until #![feature(strict_provenance)] stabilizes
3737
sptr = "0.3"
3838
libc = "0.2"
3939

4040
[build-dependencies]
4141
bindgen = { version = "0.60.1", default-features = false, features = ["runtime"] }
42-
pgx-pg-config= { path = "../pgx-pg-config/", version = "=0.7.0" }
42+
pgx-pg-config= { path = "../pgx-pg-config/", version = "=0.7.1" }
4343
proc-macro2 = "1.0.50"
4444
quote = "1.0.23"
4545
syn = { version = "1.0.107", features = [ "extra-traits", "full", "fold", "parsing" ] }

0 commit comments

Comments
 (0)