Skip to content

Commit

Permalink
bump to v0.5.6
Browse files Browse the repository at this point in the history
  • Loading branch information
eeeebbbbrrrr authored Oct 21, 2022
2 parents 6a332ed + 525243a commit 8c10bf1
Show file tree
Hide file tree
Showing 10 changed files with 38 additions and 38 deletions.
22 changes: 11 additions & 11 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions cargo-pgx/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cargo-pgx"
version = "0.5.5"
version = "0.5.6"
authors = ["ZomboDB, LLC <[email protected]>"]
license = "MIT"
description = "Cargo subcommand for 'pgx' to make Postgres extension development easy"
Expand All @@ -23,8 +23,8 @@ semver = "1.0.14"
owo-colors = { version = "3.5.0", features = [ "supports-colors" ] }
env_proxy = "0.4.1"
num_cpus = "1.13.1"
pgx-pg-config = { path = "../pgx-pg-config", version = "=0.5.5" }
pgx-utils = { path = "../pgx-utils", version = "=0.5.5", features = ["syntax-highlighting"] }
pgx-pg-config = { path = "../pgx-pg-config", version = "=0.5.6" }
pgx-utils = { path = "../pgx-utils", version = "=0.5.6", features = ["syntax-highlighting"] }
prettyplease = "0.1.21"
proc-macro2 = { version = "1.0.47", features = [ "span-locations" ] }
quote = "1.0.21"
Expand Down
4 changes: 2 additions & 2 deletions cargo-pgx/src/templates/cargo_toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ pg14 = ["pgx/pg14", "pgx-tests/pg14" ]
pg_test = []

[dependencies]
pgx = "=0.5.5"
pgx = "=0.5.6"

[dev-dependencies]
pgx-tests = "=0.5.5"
pgx-tests = "=0.5.6"

[profile.dev]
panic = "unwind"
Expand Down
8 changes: 4 additions & 4 deletions nix/templates/default/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@ pg14 = ["pgx/pg14", "pgx-tests/pg14" ]
pg_test = []

[dependencies]
pgx = "=0.5.5"
pgx-macros = "=0.5.5"
pgx-utils = "=0.5.5"
pgx = "=0.5.6"
pgx-macros = "=0.5.6"
pgx-utils = "=0.5.6"


[dev-dependencies]
pgx-tests = "=0.5.5"
pgx-tests = "=0.5.6"
tempfile = "3.2.0"
once_cell = "1.7.2"

Expand Down
4 changes: 2 additions & 2 deletions pgx-macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pgx-macros"
version = "0.5.5"
version = "0.5.6"
authors = ["ZomboDB, LLC <[email protected]>"]
license = "MIT"
description = "Proc Macros for 'pgx'"
Expand All @@ -18,7 +18,7 @@ proc-macro = true
rustc-args = ["--cfg", "docsrs"]

[dependencies]
pgx-utils = { path = "../pgx-utils", version = "=0.5.5" }
pgx-utils = { path = "../pgx-utils", version = "=0.5.6" }
proc-macro2 = "1.0.47"
quote = "1.0.21"
syn = { version = "1.0.103", features = [ "extra-traits", "full", "fold", "parsing" ] }
Expand Down
2 changes: 1 addition & 1 deletion pgx-pg-config/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pgx-pg-config"
version = "0.5.5"
version = "0.5.6"
authors = ["ZomboDB, LLC <[email protected]>"]
license = "MIT"
description = "A Postgres pg_config wrapper for 'pgx'"
Expand Down
10 changes: 5 additions & 5 deletions pgx-pg-sys/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pgx-pg-sys"
version = "0.5.5"
version = "0.5.6"
authors = ["ZomboDB, LLC <[email protected]>"]
license = "MIT"
description = "Generated Rust bindings for Postgres internals, for use with 'pgx'"
Expand Down Expand Up @@ -30,15 +30,15 @@ rustdoc-args = ["--cfg", "docsrs"]
[dependencies]
memoffset = "0.6.5"
once_cell = "1.15.0"
pgx-macros = { path = "../pgx-macros/", version = "=0.5.5" }
pgx-utils = { path = "../pgx-utils/", version = "=0.5.5" }
pgx-macros = { path = "../pgx-macros/", version = "=0.5.6" }
pgx-utils = { path = "../pgx-utils/", version = "=0.5.6" }
# polyfill until #![feature(strict_provenance)] stabilizes
sptr = "0.3"

[build-dependencies]
bindgen = { version = "0.60.1", default-features = false, features = ["runtime"] }
pgx-pg-config= { path = "../pgx-pg-config/", version = "=0.5.5" }
pgx-utils = { path = "../pgx-utils/", version = "=0.5.5" }
pgx-pg-config= { path = "../pgx-pg-config/", version = "=0.5.6" }
pgx-utils = { path = "../pgx-utils/", version = "=0.5.6" }
proc-macro2 = "1.0.47"
quote = "1.0.21"
rayon = "1.5.3"
Expand Down
10 changes: 5 additions & 5 deletions pgx-tests/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pgx-tests"
version = "0.5.5"
version = "0.5.6"
authors = ["ZomboDB, LLC <[email protected]>"]
license = "MIT"
description = "Test framework for 'pgx'-based Postgres extensions"
Expand Down Expand Up @@ -34,9 +34,9 @@ rustdoc-args = ["--cfg", "docsrs"]
owo-colors = "3.5.0"
once_cell = "1.15.0"
libc = "0.2.135"
pgx-macros = { path = "../pgx-macros", version = "=0.5.5" }
pgx-pg-config = { path = "../pgx-pg-config", version = "=0.5.5" }
pgx-utils = { path = "../pgx-utils", version = "=0.5.5" }
pgx-macros = { path = "../pgx-macros", version = "=0.5.6" }
pgx-pg-config = { path = "../pgx-pg-config", version = "=0.5.6" }
pgx-utils = { path = "../pgx-utils", version = "=0.5.6" }
postgres = "0.19.4"
regex = "1.6.0"
serde = "1.0.146"
Expand All @@ -50,4 +50,4 @@ thiserror = "1.0"
path = "../pgx"
default-features = false
features = [ "time-crate" ] # testing purposes
version = "=0.5.5"
version = "=0.5.6"
2 changes: 1 addition & 1 deletion pgx-utils/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pgx-utils"
version = "0.5.5"
version = "0.5.6"
authors = ["ZomboDB, LLC <[email protected]>"]
license = "MIT"
description = "Utility functions for 'pgx'"
Expand Down
8 changes: 4 additions & 4 deletions pgx/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pgx"
version = "0.5.5"
version = "0.5.6"
authors = ["ZomboDB, LLC <[email protected]>"]
license = "MIT"
description = "pgx: A Rust framework for creating Postgres extensions"
Expand Down Expand Up @@ -33,9 +33,9 @@ no-default-features = true
rustc-args = ["--cfg", "docsrs"]

[dependencies]
pgx-macros = { path = "../pgx-macros/", version = "=0.5.5" }
pgx-pg-sys = { path = "../pgx-pg-sys", version = "=0.5.5" }
pgx-utils = { path = "../pgx-utils/", version = "=0.5.5" }
pgx-macros = { path = "../pgx-macros/", version = "=0.5.6" }
pgx-pg-sys = { path = "../pgx-pg-sys", version = "=0.5.6" }
pgx-utils = { path = "../pgx-utils/", version = "=0.5.6" }

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

0 comments on commit 8c10bf1

Please sign in to comment.