Skip to content

Commit

Permalink
Release 0.5.0-beta.1
Browse files Browse the repository at this point in the history
  • Loading branch information
workingjubilee committed Sep 27, 2022
1 parent 5f2579d commit d5dd380
Show file tree
Hide file tree
Showing 25 changed files with 2,682 additions and 456 deletions.
518 changes: 244 additions & 274 deletions Cargo.lock

Large diffs are not rendered by default.

42 changes: 21 additions & 21 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.0-beta.0"
version = "0.5.0-beta.1"
authors = ["ZomboDB, LLC <[email protected]>"]
license = "MIT"
description = "Cargo subcommand for 'pgx' to make Postgres extension development easy"
Expand All @@ -17,33 +17,33 @@ rust-version = "1.58"
[dependencies]
atty = "0.2.14"
cargo_metadata = "0.14.2"
cargo_toml = "0.11.5"
clap = { version = "3.1.18", features = [ "env", "suggestions", "cargo", "derive" ] }
cargo_toml = "0.11.8"
clap = { version = "3.2.22", features = [ "env", "suggestions", "cargo", "derive" ] }
clap-cargo = { version = "0.8.0", features = [ "cargo_metadata" ] }
semver = "1.0.9"
owo-colors = { version = "3.4.0", features = [ "supports-colors" ] }
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.0-beta.0" }
pgx-utils = { path = "../pgx-utils", version = "=0.5.0-beta.0" }
prettyplease = "0.1.10"
proc-macro2 = { version = "1.0.39", features = [ "span-locations" ] }
quote = "1.0.18"
pgx-pg-config = { path = "../pgx-pg-config", version = "=0.5.0-beta.1" }
pgx-utils = { path = "../pgx-utils", version = "=0.5.0-beta.1" }
prettyplease = "0.1.19"
proc-macro2 = { version = "1.0.44", features = [ "span-locations" ] }
quote = "1.0.21"
rayon = "1.5.3"
regex = "1.5.5"
ureq = { version = "2.4.0", features = ["native-tls"] }
url = "2.2.2"
serde = { version = "1.0.137", features = [ "derive" ] }
serde_derive = "1.0.137"
regex = "1.6.0"
ureq = { version = "2.5.0", features = ["native-tls"] }
url = "2.3.1"
serde = { version = "1.0.145", features = [ "derive" ] }
serde_derive = "1.0.145"
serde-xml-rs = "0.5.1"
syn = { version = "1.0.95", features = [ "extra-traits", "full", "fold", "parsing" ] }
syn = { version = "1.0.101", features = [ "extra-traits", "full", "fold", "parsing" ] }
unescape = "0.1.0"
fork = "0.1.19"
fork = "0.1.20"
libloading = "0.7.3"
object = "0.28.4"
once_cell = "1.10.0"
once_cell = "1.15.0"
eyre = "0.6.8"
color-eyre = "0.6.1"
tracing = "0.1.34"
color-eyre = "0.6.2"
tracing = "0.1.36"
tracing-error = "0.2.0"
tracing-subscriber = { version = "0.3.11", features = [ "env-filter" ] }
tracing-subscriber = { version = "0.3.15", features = [ "env-filter" ] }
4 changes: 2 additions & 2 deletions cargo-pgx/src/templates/cargo_toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ pg14 = ["pgx/pg14", "pgx-tests/pg14" ]
pg_test = []

[dependencies]
pgx = "=0.5.0-beta.0"
pgx = "=0.5.0-beta.1"

[dev-dependencies]
pgx-tests = "=0.5.0-beta.0"
pgx-tests = "=0.5.0-beta.1"

[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 @@ -17,13 +17,13 @@ pg14 = ["pgx/pg14", "pgx-tests/pg14" ]
pg_test = []

[dependencies]
pgx = "=0.5.0-beta.0"
pgx-macros = "=0.5.0-beta.0"
pgx-utils = "=0.5.0-beta.0"
pgx = "=0.5.0-beta.1"
pgx-macros = "=0.5.0-beta.1"
pgx-utils = "=0.5.0-beta.1"


[dev-dependencies]
pgx-tests = "=0.5.0-beta.0"
pgx-tests = "=0.5.0-beta.1"
tempfile = "3.2.0"
once_cell = "1.7.2"

Expand Down
2 changes: 1 addition & 1 deletion pgx-examples/aggregate/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ pg_test = []

[dependencies]
pgx = { path = "../../pgx", default-features = false }
serde = "1.0.137"
serde = "1.0.145"

[dev-dependencies]
pgx-tests = { path = "../../pgx-tests" }
Expand Down
2 changes: 1 addition & 1 deletion pgx-examples/arrays/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ pg_test = []

[dependencies]
pgx = { path = "../../pgx", default-features = false }
serde = "1.0.137"
serde = "1.0.145"

[dev-dependencies]
pgx-tests = { path = "../../pgx-tests" }
Expand Down
2 changes: 1 addition & 1 deletion pgx-examples/bad_ideas/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ pg_test = []
[dependencies]
pgx = { path = "../../pgx", default-features = false }
rand = "0.8.5"
ureq = "2.4.0"
ureq = "2.5.0"

[dev-dependencies]
pgx-tests = { path = "../../pgx-tests" }
Expand Down
2 changes: 1 addition & 1 deletion pgx-examples/composite_type/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ pg_test = []

[dependencies]
pgx = { path = "../../pgx", default-features = false }
serde = "1.0.137"
serde = "1.0.145"

[dev-dependencies]
pgx-tests = { path = "../../pgx-tests" }
Expand Down
2 changes: 1 addition & 1 deletion pgx-examples/custom_sql/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ pg_test = []

[dependencies]
pgx = { path = "../../pgx", default-features = false }
serde = "1.0.137"
serde = "1.0.145"

[dev-dependencies]
pgx-tests = { path = "../../pgx-tests" }
Expand Down
2 changes: 1 addition & 1 deletion pgx-examples/custom_types/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ pg_test = []
[dependencies]
pgx = { path = "../../pgx", default-features = false }
maplit = "1.0.2"
serde = "1.0.137"
serde = "1.0.145"

[dev-dependencies]
pgx-tests = { path = "../../pgx-tests" }
Expand Down
2 changes: 1 addition & 1 deletion pgx-examples/nostd/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ pg_test = []

[dependencies]
pgx = { path = "../../pgx", default-features = false }
serde = "1.0.137"
serde = "1.0.145"

[dev-dependencies]
pgx-tests = { path = "../../pgx-tests" }
Expand Down
2 changes: 1 addition & 1 deletion pgx-examples/operators/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ pg_test = []
[dependencies]
pgx = { path = "../../pgx", default-features = false }
maplit = "1.0.2"
serde = "1.0.137"
serde = "1.0.145"

[dev-dependencies]
pgx-tests = { path = "../../pgx-tests" }
Expand Down
2 changes: 1 addition & 1 deletion pgx-examples/schemas/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ pg_test = []

[dependencies]
pgx = { path = "../../pgx", default-features = false }
serde = "1.0.137"
serde = "1.0.145"

[dev-dependencies]
pgx-tests = { path = "../../pgx-tests" }
Expand Down
4 changes: 2 additions & 2 deletions pgx-examples/shmem/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ pg14 = ["pgx/pg14", "pgx-tests/pg14" ]
pg_test = []

[dependencies]
heapless = "0.7.13"
heapless = "0.7.16"
pgx = { path = "../../pgx", default-features = false }
serde = { version = "1.0.137", features = [ "derive" ] }
serde = { version = "1.0.145", features = [ "derive" ] }

[dev-dependencies]
pgx-tests = { path = "../../pgx-tests" }
Expand Down
12 changes: 6 additions & 6 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.0-beta.0"
version = "0.5.0-beta.1"
authors = ["ZomboDB, LLC <[email protected]>"]
license = "MIT"
description = "Proc Macros for 'pgx'"
Expand All @@ -19,11 +19,11 @@ proc-macro = true
rustc-args = ["--cfg", "docsrs"]

[dependencies]
pgx-utils = { path = "../pgx-utils", version = "=0.5.0-beta.0" }
proc-macro2 = "1.0.39"
quote = "1.0.18"
syn = { version = "1.0.95", features = [ "extra-traits", "full", "fold", "parsing" ] }
pgx-utils = { path = "../pgx-utils", version = "=0.5.0-beta.1" }
proc-macro2 = "1.0.44"
quote = "1.0.21"
syn = { version = "1.0.101", features = [ "extra-traits", "full", "fold", "parsing" ] }
unescape = "0.1.0"

[dev-dependencies]
serde = { version = "1.0.137", features = ["derive"] }
serde = { version = "1.0.145", features = ["derive"] }
14 changes: 7 additions & 7 deletions 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.0-beta.0"
version = "0.5.0-beta.1"
authors = ["ZomboDB, LLC <[email protected]>"]
license = "MIT"
description = "A Postgres pg_config wrapper for 'pgx'"
Expand All @@ -16,10 +16,10 @@ rust-version = "1.58"
[dependencies]
dirs = "4.0.0"
eyre = "0.6.8"
owo-colors = "3.4.0"
serde = { version = "1.0.137", features = [ "derive" ] }
serde_derive = "1.0.137"
serde_json = "1.0.81"
owo-colors = "3.5.0"
serde = { version = "1.0.145", features = [ "derive" ] }
serde_derive = "1.0.145"
serde_json = "1.0.85"
toml = "0.5.9"
tracing = "0.1.34"
url = "2.2.2"
tracing = "0.1.36"
url = "2.3.1"
22 changes: 11 additions & 11 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.0-beta.0"
version = "0.5.0-beta.1"
authors = ["ZomboDB, LLC <[email protected]>"]
license = "MIT"
description = "Generated Rust bindings for Postgres internals, for use with 'pgx'"
Expand Down Expand Up @@ -30,23 +30,23 @@ rustdoc-args = ["--cfg", "docsrs"]

[dependencies]
memoffset = "0.6.5"
once_cell = "1.10.0"
pgx-macros = { path = "../pgx-macros/", version = "=0.5.0-beta.0" }
pgx-utils = { path = "../pgx-utils/", version = "=0.5.0-beta.0" }
once_cell = "1.15.0"
pgx-macros = { path = "../pgx-macros/", version = "=0.5.0-beta.1" }
pgx-utils = { path = "../pgx-utils/", version = "=0.5.0-beta.1" }
# polyfill until #![feature(strict_provenance)] stabilizes
sptr = "0.3"

[build-dependencies]
bindgen = { version = "0.59.2", default-features = false, features = ["runtime"] }
build-deps = "0.1.4"
owo-colors = "3.4.0"
owo-colors = "3.5.0"
num_cpus = "1.13.1"
pgx-pg-config= { path = "../pgx-pg-config/", version = "=0.5.0-beta.0" }
pgx-utils = { path = "../pgx-utils/", version = "=0.5.0-beta.0" }
proc-macro2 = "1.0.39"
quote = "1.0.18"
pgx-pg-config= { path = "../pgx-pg-config/", version = "=0.5.0-beta.1" }
pgx-utils = { path = "../pgx-utils/", version = "=0.5.0-beta.1" }
proc-macro2 = "1.0.44"
quote = "1.0.21"
rayon = "1.5.3"
syn = { version = "1.0.95", features = [ "extra-traits", "full", "fold", "parsing" ] }
syn = { version = "1.0.101", features = [ "extra-traits", "full", "fold", "parsing" ] }
eyre = "0.6.8"
color-eyre = "0.6.1"
color-eyre = "0.6.2"
rustversion = "1.0"
Loading

0 comments on commit d5dd380

Please sign in to comment.