Skip to content

Commit 73a831a

Browse files
authored
Update version to 0.7.4 (#1074)
1 parent 15110f0 commit 73a831a

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-pgx/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-pgx"
3-
version = "0.7.3"
3+
version = "0.7.4"
44
authors = ["ZomboDB, LLC <[email protected]>"]
55
license = "MIT"
66
description = "Cargo subcommand for 'pgx' 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.15.0"
26-
pgx-pg-config = { path = "../pgx-pg-config", version = "=0.7.3" }
27-
pgx-sql-entity-graph = { path = "../pgx-sql-entity-graph", version = "=0.7.3" }
26+
pgx-pg-config = { path = "../pgx-pg-config", version = "=0.7.4" }
27+
pgx-sql-entity-graph = { path = "../pgx-sql-entity-graph", version = "=0.7.4" }
2828
prettyplease = "0.1.24"
2929
proc-macro2 = { version = "1.0.52", features = [ "span-locations" ] }
3030
quote = "1.0.26"

cargo-pgx/src/templates/cargo_toml

Lines changed: 2 additions & 2 deletions
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.3"
19+
pgx = "=0.7.4"
2020

2121
[dev-dependencies]
22-
pgx-tests = "=0.7.3"
22+
pgx-tests = "=0.7.4"
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 = ["pgx/pg15", "pgx-tests/pg15" ]
1616
pg_test = []
1717

1818
[dependencies]
19-
pgx = "=0.7.3"
19+
pgx = "=0.7.4"
2020

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

pgx-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 = "pgx-macros"
3-
version = "0.7.3"
3+
version = "0.7.4"
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.3" }
24+
pgx-sql-entity-graph = { path = "../pgx-sql-entity-graph", version = "=0.7.4" }
2525
proc-macro2 = "1.0.52"
2626
quote = "1.0.26"
2727
syn = { version = "1.0.109", features = [ "extra-traits", "full", "fold", "parsing" ] }

pgx-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 = "pgx-pg-config"
3-
version = "0.7.3"
3+
version = "0.7.4"
44
authors = ["ZomboDB, LLC <[email protected]>"]
55
license = "MIT"
66
description = "A Postgres pg_config wrapper for 'pgx'"

pgx-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 = "pgx-pg-sys"
3-
version = "0.7.3"
3+
version = "0.7.4"
44
authors = ["ZomboDB, LLC <[email protected]>"]
55
license = "MIT"
66
description = "Generated Rust bindings for Postgres internals, for use with 'pgx'"
@@ -29,16 +29,16 @@ rustdoc-args = ["--cfg", "docsrs"]
2929

3030
[dependencies]
3131
memoffset = "0.8.0"
32-
pgx-macros = { path = "../pgx-macros/", version = "=0.7.3" }
33-
pgx-sql-entity-graph = { path = "../pgx-sql-entity-graph/", version = "=0.7.3" }
32+
pgx-macros = { path = "../pgx-macros/", version = "=0.7.4" }
33+
pgx-sql-entity-graph = { path = "../pgx-sql-entity-graph/", version = "=0.7.4" }
3434
serde = { version = "1.0.156", 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.60.1", default-features = false, features = ["runtime"] }
41-
pgx-pg-config= { path = "../pgx-pg-config/", version = "=0.7.3" }
41+
pgx-pg-config= { path = "../pgx-pg-config/", version = "=0.7.4" }
4242
proc-macro2 = "1.0.52"
4343
quote = "1.0.26"
4444
syn = { version = "1.0.109", features = [ "extra-traits", "full", "fold", "parsing" ] }

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

pgx-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 = "pgx-tests"
3-
version = "0.7.3"
3+
version = "0.7.4"
44
authors = ["ZomboDB, LLC <[email protected]>"]
55
license = "MIT"
66
description = "Test framework for 'pgx'-based Postgres extensions"
@@ -37,8 +37,8 @@ clap-cargo = "0.10.0"
3737
owo-colors = "3.5.0"
3838
once_cell = "1.17.1"
3939
libc = "0.2.140"
40-
pgx-macros = { path = "../pgx-macros", version = "=0.7.3" }
41-
pgx-pg-config = { path = "../pgx-pg-config", version = "=0.7.3" }
40+
pgx-macros = { path = "../pgx-macros", version = "=0.7.4" }
41+
pgx-pg-config = { path = "../pgx-pg-config", version = "=0.7.4" }
4242
postgres = "0.19.4"
4343
regex = "1.7.1"
4444
serde = "1.0.156"
@@ -55,4 +55,4 @@ eyre = "0.6.8" # testing functions that return `eyre::Result`
5555
path = "../pgx"
5656
default-features = false
5757
features = [ "time-crate" ] # testing purposes
58-
version = "=0.7.3"
58+
version = "=0.7.4"

pgx/Cargo.toml

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

3636
[dependencies]
37-
pgx-macros = { path = "../pgx-macros", version = "=0.7.3" }
38-
pgx-pg-sys = { path = "../pgx-pg-sys", version = "=0.7.3" }
39-
pgx-sql-entity-graph = { path = "../pgx-sql-entity-graph", version = "=0.7.3" }
37+
pgx-macros = { path = "../pgx-macros", version = "=0.7.4" }
38+
pgx-pg-sys = { path = "../pgx-pg-sys", version = "=0.7.4" }
39+
pgx-sql-entity-graph = { path = "../pgx-sql-entity-graph", version = "=0.7.4" }
4040

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

0 commit comments

Comments
 (0)