Skip to content

Commit

Permalink
Update version to 0.7.1 (pgcentralfoundation#1030)
Browse files Browse the repository at this point in the history
  • Loading branch information
eeeebbbbrrrr authored Feb 2, 2023
1 parent a71f8cc commit 4b9467a
Show file tree
Hide file tree
Showing 15 changed files with 16,673 additions and 19,212 deletions.
152 changes: 88 additions & 64 deletions Cargo.lock

Large diffs are not rendered by default.

8 changes: 4 additions & 4 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.7.0"
version = "0.7.1"
authors = ["ZomboDB, LLC <zombodb@gmail.com>"]
license = "MIT"
description = "Cargo subcommand for 'pgx' to make Postgres extension development easy"
Expand All @@ -15,16 +15,16 @@ edition = "2021"

[dependencies]
atty = "0.2.14"
cargo_metadata = "0.15.2"
cargo_metadata = "0.15.3"
cargo_toml = "0.11.8"
clap = { version = "4.1.4", features = [ "env", "suggestions", "cargo", "derive", "wrap_help" ] }
clap-cargo = { version = "0.10.0", features = [ "cargo_metadata" ] }
semver = "1.0.16"
owo-colors = { version = "3.5.0", features = [ "supports-colors" ] }
env_proxy = "0.4.1"
num_cpus = "1.15.0"
pgx-pg-config = { path = "../pgx-pg-config", version = "=0.7.0" }
pgx-sql-entity-graph = { path = "../pgx-sql-entity-graph", version = "=0.7.0" }
pgx-pg-config = { path = "../pgx-pg-config", version = "=0.7.1" }
pgx-sql-entity-graph = { path = "../pgx-sql-entity-graph", version = "=0.7.1" }
prettyplease = "0.1.23"
proc-macro2 = { version = "1.0.50", features = [ "span-locations" ] }
quote = "1.0.23"
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 @@ pg15 = ["pgx/pg15", "pgx-tests/pg15" ]
pg_test = []

[dependencies]
pgx = "=0.7.0"
pgx = "=0.7.1"

[dev-dependencies]
pgx-tests = "=0.7.0"
pgx-tests = "=0.7.1"

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

[dependencies]
pgx = "=0.7.0"
pgx = "=0.7.1"

[dev-dependencies]
pgx-tests = "=0.7.0"
pgx-tests = "=0.7.1"
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.7.0"
version = "0.7.1"
authors = ["ZomboDB, LLC <zombodb@gmail.com>"]
license = "MIT"
description = "Proc Macros for 'pgx'"
Expand All @@ -21,7 +21,7 @@ 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.7.0" }
pgx-sql-entity-graph = { path = "../pgx-sql-entity-graph", version = "=0.7.1" }
proc-macro2 = "1.0.50"
quote = "1.0.23"
syn = { version = "1.0.107", 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.7.0"
version = "0.7.1"
authors = ["ZomboDB, LLC <zombodb@gmail.com>"]
license = "MIT"
description = "A Postgres pg_config wrapper for 'pgx'"
Expand Down
8 changes: 4 additions & 4 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.7.0"
version = "0.7.1"
authors = ["ZomboDB, LLC <zombodb@gmail.com>"]
license = "MIT"
description = "Generated Rust bindings for Postgres internals, for use with 'pgx'"
Expand Down Expand Up @@ -30,16 +30,16 @@ rustdoc-args = ["--cfg", "docsrs"]

[dependencies]
memoffset = "0.6.5"
pgx-macros = { path = "../pgx-macros/", version = "=0.7.0" }
pgx-sql-entity-graph = { path = "../pgx-sql-entity-graph/", version = "=0.7.0" }
pgx-macros = { path = "../pgx-macros/", version = "=0.7.1" }
pgx-sql-entity-graph = { path = "../pgx-sql-entity-graph/", version = "=0.7.1" }
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.7.0" }
pgx-pg-config= { path = "../pgx-pg-config/", version = "=0.7.1" }
proc-macro2 = "1.0.50"
quote = "1.0.23"
syn = { version = "1.0.107", features = [ "extra-traits", "full", "fold", "parsing" ] }
Expand Down
Loading

0 comments on commit 4b9467a

Please sign in to comment.