-
-
Notifications
You must be signed in to change notification settings - Fork 257
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update version to 0.7.0-beta.0 (#1000)
- Loading branch information
1 parent
f493e38
commit f7ca21c
Showing
31 changed files
with
207,105 additions
and
450,406 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "cargo-pgx" | ||
version = "0.6.1" | ||
version = "0.7.0-beta.0" | ||
authors = ["ZomboDB, LLC <[email protected]>"] | ||
license = "MIT" | ||
description = "Cargo subcommand for 'pgx' to make Postgres extension development easy" | ||
|
@@ -17,30 +17,30 @@ edition = "2021" | |
atty = "0.2.14" | ||
cargo_metadata = "0.15.2" | ||
cargo_toml = "0.11.8" | ||
clap = { version = "4.0.29", features = [ "env", "suggestions", "cargo", "derive" ] } | ||
clap = { version = "4.0.32", features = [ "env", "suggestions", "cargo", "derive" ] } | ||
clap-cargo = { version = "0.10.0", features = [ "cargo_metadata" ] } | ||
semver = "1.0.14" | ||
semver = "1.0.16" | ||
owo-colors = { version = "3.5.0", features = [ "supports-colors" ] } | ||
env_proxy = "0.4.1" | ||
num_cpus = "1.14.0" | ||
pgx-pg-config = { path = "../pgx-pg-config", version = "=0.6.1" } | ||
pgx-sql-entity-graph = { path = "../pgx-sql-entity-graph", version = "=0.6.1" } | ||
prettyplease = "0.1.21" | ||
proc-macro2 = { version = "1.0.47", features = [ "span-locations" ] } | ||
quote = "1.0.21" | ||
rayon = "1.6.0" | ||
regex = "1.7.0" | ||
ureq = "2.5.0" | ||
num_cpus = "1.15.0" | ||
pgx-pg-config = { path = "../pgx-pg-config", version = "=0.7.0-beta.0" } | ||
pgx-sql-entity-graph = { path = "../pgx-sql-entity-graph", version = "=0.7.0-beta.0" } | ||
prettyplease = "0.1.23" | ||
proc-macro2 = { version = "1.0.49", features = [ "span-locations" ] } | ||
quote = "1.0.23" | ||
rayon = "1.6.1" | ||
regex = "1.7.1" | ||
ureq = "2.6.1" | ||
url = "2.3.1" | ||
serde = { version = "1.0.149", features = [ "derive" ] } | ||
serde_derive = "1.0.149" | ||
serde = { version = "1.0.152", features = [ "derive" ] } | ||
serde_derive = "1.0.152" | ||
serde-xml-rs = "0.5.1" | ||
syn = { version = "1.0.105", features = [ "extra-traits", "full", "fold", "parsing" ] } | ||
syn = { version = "1.0.107", features = [ "extra-traits", "full", "fold", "parsing" ] } | ||
unescape = "0.1.0" | ||
fork = "0.1.20" | ||
libloading = "0.7.4" | ||
object = "0.28.4" | ||
once_cell = "1.16.0" | ||
once_cell = "1.17.0" | ||
eyre = "0.6.8" | ||
color-eyre = "0.6.2" | ||
tracing = "0.1.37" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "pgx-macros" | ||
version = "0.6.1" | ||
version = "0.7.0-beta.0" | ||
authors = ["ZomboDB, LLC <[email protected]>"] | ||
license = "MIT" | ||
description = "Proc Macros for 'pgx'" | ||
|
@@ -21,10 +21,10 @@ rustc-args = ["--cfg", "docsrs"] | |
no-schema-generation = ["pgx-sql-entity-graph/no-schema-generation"] | ||
|
||
[dependencies] | ||
pgx-sql-entity-graph = { path = "../pgx-sql-entity-graph", version = "=0.6.1" } | ||
proc-macro2 = "1.0.47" | ||
quote = "1.0.21" | ||
syn = { version = "1.0.104", features = [ "extra-traits", "full", "fold", "parsing" ] } | ||
pgx-sql-entity-graph = { path = "../pgx-sql-entity-graph", version = "=0.7.0-beta.0" } | ||
proc-macro2 = "1.0.49" | ||
quote = "1.0.23" | ||
syn = { version = "1.0.107", features = [ "extra-traits", "full", "fold", "parsing" ] } | ||
|
||
[dev-dependencies] | ||
serde = { version = "1.0.148", features = ["derive"] } # for Documentation examples | ||
serde = { version = "1.0.152", features = ["derive"] } # for Documentation examples |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "pgx-pg-config" | ||
version = "0.6.1" | ||
version = "0.7.0-beta.0" | ||
authors = ["ZomboDB, LLC <[email protected]>"] | ||
license = "MIT" | ||
description = "A Postgres pg_config wrapper for 'pgx'" | ||
|
@@ -17,8 +17,8 @@ dirs = "4.0.0" | |
eyre = "0.6.8" | ||
pathsearch = "0.2.0" | ||
owo-colors = "3.5.0" | ||
serde = { version = "1.0.149", features = [ "derive" ] } | ||
serde_derive = "1.0.149" | ||
serde_json = "1.0.89" | ||
toml = "0.5.9" | ||
serde = { version = "1.0.152", features = [ "derive" ] } | ||
serde_derive = "1.0.152" | ||
serde_json = "1.0.91" | ||
toml = "0.5.10" | ||
url = "2.3.1" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "pgx-pg-sys" | ||
version = "0.6.1" | ||
version = "0.7.0-beta.0" | ||
authors = ["ZomboDB, LLC <[email protected]>"] | ||
license = "MIT" | ||
description = "Generated Rust bindings for Postgres internals, for use with 'pgx'" | ||
|
@@ -30,19 +30,19 @@ rustdoc-args = ["--cfg", "docsrs"] | |
|
||
[dependencies] | ||
memoffset = "0.6.5" | ||
pgx-macros = { path = "../pgx-macros/", version = "=0.6.1" } | ||
pgx-sql-entity-graph = { path = "../pgx-sql-entity-graph/", version = "=0.6.1" } | ||
serde = { version = "1.0.149", features = [ "derive" ] } # impls on pub types | ||
pgx-macros = { path = "../pgx-macros/", version = "=0.7.0-beta.0" } | ||
pgx-sql-entity-graph = { path = "../pgx-sql-entity-graph/", version = "=0.7.0-beta.0" } | ||
serde = { version = "1.0.152", features = [ "derive" ] } # impls on pub types | ||
# polyfill until #![feature(strict_provenance)] stabilizes | ||
sptr = "0.3" | ||
libc = "0.2" | ||
|
||
[build-dependencies] | ||
bindgen = { version = "0.60.1", default-features = false, features = ["runtime"] } | ||
pgx-pg-config= { path = "../pgx-pg-config/", version = "=0.6.1" } | ||
proc-macro2 = "1.0.47" | ||
quote = "1.0.21" | ||
syn = { version = "1.0.105", features = [ "extra-traits", "full", "fold", "parsing" ] } | ||
pgx-pg-config= { path = "../pgx-pg-config/", version = "=0.7.0-beta.0" } | ||
proc-macro2 = "1.0.49" | ||
quote = "1.0.23" | ||
syn = { version = "1.0.107", features = [ "extra-traits", "full", "fold", "parsing" ] } | ||
eyre = "0.6.8" | ||
shlex = "1.1.0" # shell lexing, also used by many of our deps | ||
once_cell = "1.16.0" | ||
once_cell = "1.17.0" |
Oops, something went wrong.