Skip to content

Commit

Permalink
Release 0.3.0 (#431)
Browse files Browse the repository at this point in the history
Signed-off-by: Ana Hobden <[email protected]>
  • Loading branch information
Hoverbear authored Feb 9, 2022
1 parent 4635f12 commit cda8838
Show file tree
Hide file tree
Showing 15 changed files with 25,956 additions and 30,326 deletions.
328 changes: 136 additions & 192 deletions Cargo.lock

Large diffs are not rendered by default.

12 changes: 6 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pgx-parent"
version = "0.2.6"
version = "0.3.0"
authors = ["ZomboDB, LLC <[email protected]>"]
edition = "2018"
license = "MIT"
Expand Down Expand Up @@ -52,8 +52,8 @@ no-default-features = true
rustc-args = ["--cfg", "docsrs"]

[dependencies]
cargo-pgx = { path = "cargo-pgx", version = "0.2.6" }
pgx = { path = "pgx", version = "0.2.6", default-features = false }
pgx-macros = { path = "pgx-macros", version = "0.2.6" }
pgx-pg-sys = { path = "pgx-pg-sys", version = "0.2.6", default-features = false }
pgx-tests = { path = "pgx-tests", version = "0.2.6", default-features = false }
cargo-pgx = { path = "cargo-pgx", version = "0.3.0" }
pgx = { path = "pgx", version = "0.3.0", default-features = false }
pgx-macros = { path = "pgx-macros", version = "0.3.0" }
pgx-pg-sys = { path = "pgx-pg-sys", version = "0.3.0", default-features = false }
pgx-tests = { path = "pgx-tests", version = "0.3.0", default-features = false }
16 changes: 8 additions & 8 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.2.6"
version = "0.3.0"
authors = ["ZomboDB, LLC <[email protected]>"]
edition = "2018"
license = "MIT"
Expand All @@ -15,14 +15,14 @@ exclude = [ "*.png" ]

[dependencies]
cargo_metadata = "0.14.1"
cargo_toml = "0.11.3"
clap = { version = "3.0.13", features = [ "env", "suggestions", "cargo", "derive" ] }
cargo_toml = "0.11.4"
clap = { version = "3.0.14", features = [ "env", "suggestions", "cargo", "derive" ] }
clap-cargo = { version = "0.8.0", features = [ "cargo_metadata" ] }
semver = "1.0.4"
semver = "1.0.5"
colored = "2.0.0"
env_proxy = "0.4.1"
num_cpus = "1.13.1"
pgx-utils = { path = "../pgx-utils", version = "0.2.6" }
pgx-utils = { path = "../pgx-utils", version = "0.3.0" }
proc-macro2 = { version = "1.0.36", features = [ "span-locations" ] }
quote = "1.0.15"
rayon = "1.5.1"
Expand All @@ -32,9 +32,9 @@ syn = { version = "1.0.86", features = [ "extra-traits", "full", "fold", "parsin
unescape = "0.1.0"
fork = "0.1.18"
libloading = "0.7.3"
symbolic = "8.5.0"
symbolic = "8.6.0"
eyre = "0.6.6"
color-eyre = "0.6.0"
tracing = "0.1.29"
tracing = "0.1.30"
tracing-error = "0.2.0"
tracing-subscriber = { version = "0.3.7", features = [ "env-filter" ] }
tracing-subscriber = { version = "0.3.8", features = [ "env-filter" ] }
6 changes: 3 additions & 3 deletions cargo-pgx/src/templates/cargo_toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@ pg14 = ["pgx/pg14", "pgx-tests/pg14" ]
pg_test = []

[dependencies]
pgx = "0.2.6"
pgx-macros = "0.2.6"
pgx = "0.3.0"
pgx-macros = "0.3.0"

[dev-dependencies]
pgx-tests = "0.2.6"
pgx-tests = "0.3.0"

[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.2.6"
pgx-macros = "0.2.6"
pgx-utils = "0.2.6"
pgx = "0.3.0"
pgx-macros = "0.3.0"
pgx-utils = "0.3.0"


[dev-dependencies]
pgx-tests = "0.2.6"
pgx-tests = "0.3.0"
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.2.6"
version = "0.3.0"
authors = ["ZomboDB, LLC <[email protected]>"]
edition = "2018"
license = "MIT"
Expand All @@ -18,7 +18,7 @@ proc-macro = true
rustc-args = ["--cfg", "docsrs"]

[dependencies]
pgx-utils = { path = "../pgx-utils", version = "0.2.6" }
pgx-utils = { path = "../pgx-utils", version = "0.3.0" }
proc-macro2 = "1.0.36"
quote = "1.0.15"
syn = { version = "1.0.86", features = [ "extra-traits", "full", "fold", "parsing" ] }
Expand Down
6 changes: 3 additions & 3 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.2.6"
version = "0.3.0"
authors = ["ZomboDB, LLC <[email protected]>"]
edition = "2018"
license = "MIT"
Expand Down Expand Up @@ -29,14 +29,14 @@ rustdoc-args = ["--cfg", "docsrs"]
[dependencies]
memoffset = "0.6.5"
once_cell = "1.9.0"
pgx-macros = { path = "../pgx-macros/", version = "0.2.6" }
pgx-macros = { path = "../pgx-macros/", version = "0.3.0" }

[build-dependencies]
bindgen = "0.59.2"
build-deps = "0.1.4"
colored = "2.0.0"
num_cpus = "1.13.1"
pgx-utils = { path = "../pgx-utils/", version = "0.2.6" }
pgx-utils = { path = "../pgx-utils/", version = "0.3.0" }
proc-macro2 = "1.0.36"
quote = "1.0.15"
rayon = "1.5.1"
Expand Down
Loading

0 comments on commit cda8838

Please sign in to comment.