Skip to content

Commit 8c10bf1

Browse files
authored
bump to v0.5.6
2 parents 6a332ed + 525243a commit 8c10bf1

File tree

10 files changed

+38
-38
lines changed

10 files changed

+38
-38
lines changed

Cargo.lock

Lines changed: 11 additions & 11 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.5.5"
3+
version = "0.5.6"
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.14"
2323
owo-colors = { version = "3.5.0", features = [ "supports-colors" ] }
2424
env_proxy = "0.4.1"
2525
num_cpus = "1.13.1"
26-
pgx-pg-config = { path = "../pgx-pg-config", version = "=0.5.5" }
27-
pgx-utils = { path = "../pgx-utils", version = "=0.5.5", features = ["syntax-highlighting"] }
26+
pgx-pg-config = { path = "../pgx-pg-config", version = "=0.5.6" }
27+
pgx-utils = { path = "../pgx-utils", version = "=0.5.6", features = ["syntax-highlighting"] }
2828
prettyplease = "0.1.21"
2929
proc-macro2 = { version = "1.0.47", features = [ "span-locations" ] }
3030
quote = "1.0.21"

cargo-pgx/src/templates/cargo_toml

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

1818
[dependencies]
19-
pgx = "=0.5.5"
19+
pgx = "=0.5.6"
2020

2121
[dev-dependencies]
22-
pgx-tests = "=0.5.5"
22+
pgx-tests = "=0.5.6"
2323

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

nix/templates/default/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,13 @@ pg14 = ["pgx/pg14", "pgx-tests/pg14" ]
1616
pg_test = []
1717

1818
[dependencies]
19-
pgx = "=0.5.5"
20-
pgx-macros = "=0.5.5"
21-
pgx-utils = "=0.5.5"
19+
pgx = "=0.5.6"
20+
pgx-macros = "=0.5.6"
21+
pgx-utils = "=0.5.6"
2222

2323

2424
[dev-dependencies]
25-
pgx-tests = "=0.5.5"
25+
pgx-tests = "=0.5.6"
2626
tempfile = "3.2.0"
2727
once_cell = "1.7.2"
2828

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.5.5"
3+
version = "0.5.6"
44
authors = ["ZomboDB, LLC <[email protected]>"]
55
license = "MIT"
66
description = "Proc Macros for 'pgx'"
@@ -18,7 +18,7 @@ proc-macro = true
1818
rustc-args = ["--cfg", "docsrs"]
1919

2020
[dependencies]
21-
pgx-utils = { path = "../pgx-utils", version = "=0.5.5" }
21+
pgx-utils = { path = "../pgx-utils", version = "=0.5.6" }
2222
proc-macro2 = "1.0.47"
2323
quote = "1.0.21"
2424
syn = { version = "1.0.103", 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.5.5"
3+
version = "0.5.6"
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: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "pgx-pg-sys"
3-
version = "0.5.5"
3+
version = "0.5.6"
44
authors = ["ZomboDB, LLC <[email protected]>"]
55
license = "MIT"
66
description = "Generated Rust bindings for Postgres internals, for use with 'pgx'"
@@ -30,15 +30,15 @@ rustdoc-args = ["--cfg", "docsrs"]
3030
[dependencies]
3131
memoffset = "0.6.5"
3232
once_cell = "1.15.0"
33-
pgx-macros = { path = "../pgx-macros/", version = "=0.5.5" }
34-
pgx-utils = { path = "../pgx-utils/", version = "=0.5.5" }
33+
pgx-macros = { path = "../pgx-macros/", version = "=0.5.6" }
34+
pgx-utils = { path = "../pgx-utils/", version = "=0.5.6" }
3535
# polyfill until #![feature(strict_provenance)] stabilizes
3636
sptr = "0.3"
3737

3838
[build-dependencies]
3939
bindgen = { version = "0.60.1", default-features = false, features = ["runtime"] }
40-
pgx-pg-config= { path = "../pgx-pg-config/", version = "=0.5.5" }
41-
pgx-utils = { path = "../pgx-utils/", version = "=0.5.5" }
40+
pgx-pg-config= { path = "../pgx-pg-config/", version = "=0.5.6" }
41+
pgx-utils = { path = "../pgx-utils/", version = "=0.5.6" }
4242
proc-macro2 = "1.0.47"
4343
quote = "1.0.21"
4444
rayon = "1.5.3"

pgx-tests/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "pgx-tests"
3-
version = "0.5.5"
3+
version = "0.5.6"
44
authors = ["ZomboDB, LLC <[email protected]>"]
55
license = "MIT"
66
description = "Test framework for 'pgx'-based Postgres extensions"
@@ -34,9 +34,9 @@ rustdoc-args = ["--cfg", "docsrs"]
3434
owo-colors = "3.5.0"
3535
once_cell = "1.15.0"
3636
libc = "0.2.135"
37-
pgx-macros = { path = "../pgx-macros", version = "=0.5.5" }
38-
pgx-pg-config = { path = "../pgx-pg-config", version = "=0.5.5" }
39-
pgx-utils = { path = "../pgx-utils", version = "=0.5.5" }
37+
pgx-macros = { path = "../pgx-macros", version = "=0.5.6" }
38+
pgx-pg-config = { path = "../pgx-pg-config", version = "=0.5.6" }
39+
pgx-utils = { path = "../pgx-utils", version = "=0.5.6" }
4040
postgres = "0.19.4"
4141
regex = "1.6.0"
4242
serde = "1.0.146"
@@ -50,4 +50,4 @@ thiserror = "1.0"
5050
path = "../pgx"
5151
default-features = false
5252
features = [ "time-crate" ] # testing purposes
53-
version = "=0.5.5"
53+
version = "=0.5.6"

pgx-utils/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-utils"
3-
version = "0.5.5"
3+
version = "0.5.6"
44
authors = ["ZomboDB, LLC <[email protected]>"]
55
license = "MIT"
66
description = "Utility functions for 'pgx'"

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.5.5"
3+
version = "0.5.6"
44
authors = ["ZomboDB, LLC <[email protected]>"]
55
license = "MIT"
66
description = "pgx: A Rust framework for creating Postgres extensions"
@@ -33,9 +33,9 @@ no-default-features = true
3333
rustc-args = ["--cfg", "docsrs"]
3434

3535
[dependencies]
36-
pgx-macros = { path = "../pgx-macros/", version = "=0.5.5" }
37-
pgx-pg-sys = { path = "../pgx-pg-sys", version = "=0.5.5" }
38-
pgx-utils = { path = "../pgx-utils/", version = "=0.5.5" }
36+
pgx-macros = { path = "../pgx-macros/", version = "=0.5.6" }
37+
pgx-pg-sys = { path = "../pgx-pg-sys", version = "=0.5.6" }
38+
pgx-utils = { path = "../pgx-utils/", version = "=0.5.6" }
3939

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

0 commit comments

Comments
 (0)