Skip to content

Commit

Permalink
Update version to 0.11.0 (#1331)
Browse files Browse the repository at this point in the history
  • Loading branch information
eeeebbbbrrrr authored Oct 11, 2023
1 parent 4d1c735 commit 6bbe8ff
Show file tree
Hide file tree
Showing 25 changed files with 167,885 additions and 294,819 deletions.
309 changes: 140 additions & 169 deletions Cargo.lock

Large diffs are not rendered by default.

20 changes: 10 additions & 10 deletions cargo-pgrx/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

[package]
name = "cargo-pgrx"
version = "0.10.2"
version = "0.11.0"
authors = ["PgCentral Foundation, Inc. <[email protected]>"]
license = "MIT"
description = "Cargo subcommand for 'pgrx' to make Postgres extension development easy"
Expand All @@ -26,29 +26,29 @@ edition = "2021"
[dependencies]
atty = "0.2.14"
cargo_metadata = "0.17.0"
cargo_toml = "0.16.1"
cargo_toml = "0.16.3"
clap = { version = "4.4.2", features = [ "env", "suggestions", "cargo", "derive", "wrap_help" ] }
clap-cargo = { version = "0.11.0", features = [ "cargo_metadata" ] }
semver = "1.0.18"
semver = "1.0.20"
owo-colors = { version = "3.5.0", features = [ "supports-colors" ] }
env_proxy = "0.4.1"
num_cpus = "1.16.0"
pgrx-pg-config = { path = "../pgrx-pg-config", version = "=0.10.2" }
pgrx-sql-entity-graph = { path = "../pgrx-sql-entity-graph", version = "=0.10.2" }
pgrx-pg-config = { path = "../pgrx-pg-config", version = "=0.11.0" }
pgrx-sql-entity-graph = { path = "../pgrx-sql-entity-graph", version = "=0.11.0" }
prettyplease = "0.2.15"
proc-macro2 = { version = "1.0.67", features = [ "span-locations" ] }
proc-macro2 = { version = "1.0.69", features = [ "span-locations" ] }
quote = "1.0.33"
rayon = "1.7.0"
regex = "1.9.5"
ureq = "2.7.1"
rayon = "1.8.0"
regex = "1.10.0"
ureq = "2.8.0"
url = "2.4.1"
serde = { version = "1.0", features = [ "derive" ] }
serde_derive = "1.0"
serde-xml-rs = "0.6.0"
syn = { version = "2.0.18", features = [ "extra-traits", "full", "fold", "parsing" ] }
unescape = "0.1.0"
fork = "0.1.22"
libloading = "0.8.0"
libloading = "0.8.1"
object = "0.32.1"
once_cell = "1.18.0"
eyre = "0.6.8"
Expand Down
4 changes: 2 additions & 2 deletions cargo-pgrx/src/templates/cargo_toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ pg16 = ["pgrx/pg16", "pgrx-tests/pg16" ]
pg_test = []

[dependencies]
pgrx = "=0.10.2"
pgrx = "=0.11.0"

[dev-dependencies]
pgrx-tests = "=0.10.2"
pgrx-tests = "=0.11.0"

[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 @@ -27,10 +27,10 @@ pg16 = ["pgrx/pg16", "pgrx-tests/pg16" ]
pg_test = []

[dependencies]
pgrx = "=0.10.2"
pgrx = "=0.11.0"

[dev-dependencies]
pgrx-tests = "=0.10.2"
pgrx-tests = "=0.11.0"
tempfile = "3.2.0"
once_cell = "1.7.2"

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

[dev-dependencies]
pgrx-tests = { path = "../../pgrx-tests" }
Expand Down
6 changes: 3 additions & 3 deletions pgrx-macros/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

[package]
name = "pgrx-macros"
version = "0.10.2"
version = "0.11.0"
authors = ["PgCentral Foundation, Inc. <[email protected]>"]
license = "MIT"
description = "Proc Macros for 'pgrx'"
Expand All @@ -31,8 +31,8 @@ rustc-args = ["--cfg", "docsrs"]
no-schema-generation = ["pgrx-sql-entity-graph/no-schema-generation"]

[dependencies]
pgrx-sql-entity-graph = { path = "../pgrx-sql-entity-graph", version = "=0.10.2" }
proc-macro2 = "1.0.67"
pgrx-sql-entity-graph = { path = "../pgrx-sql-entity-graph", version = "=0.11.0" }
proc-macro2 = "1.0.69"
quote = "1.0.33"
syn = { version = "1.0.109", features = [ "extra-traits", "full", "fold", "parsing" ] }

Expand Down
6 changes: 3 additions & 3 deletions pgrx-pg-config/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

[package]
name = "pgrx-pg-config"
version = "0.10.2"
version = "0.11.0"
authors = ["PgCentral Foundation, Inc. <[email protected]>"]
license = "MIT"
description = "A Postgres pg_config wrapper for 'pgrx'"
Expand All @@ -30,6 +30,6 @@ owo-colors = "3.5.0"
serde = { version = "1.0", features = [ "derive" ] }
serde_derive = "1.0"
serde_json = "1.0"
toml = "0.8.0"
toml = "0.8.2"
url = "2.4.1"
cargo_toml = "0.16.1"
cargo_toml = "0.16.3"
10 changes: 5 additions & 5 deletions pgrx-pg-sys/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

[package]
name = "pgrx-pg-sys"
version = "0.10.2"
version = "0.11.0"
authors = ["PgCentral Foundation, Inc. <[email protected]>"]
license = "MIT"
description = "Generated Rust bindings for Postgres internals, for use with 'pgrx'"
Expand Down Expand Up @@ -40,17 +40,17 @@ rustdoc-args = ["--cfg", "docsrs"]

[dependencies]
memoffset = "0.9.0"
pgrx-macros = { path = "../pgrx-macros/", version = "=0.10.2" }
pgrx-sql-entity-graph = { path = "../pgrx-sql-entity-graph/", version = "=0.10.2" }
pgrx-macros = { path = "../pgrx-macros/", version = "=0.11.0" }
pgrx-sql-entity-graph = { path = "../pgrx-sql-entity-graph/", version = "=0.11.0" }
serde = { version = "1.0", features = [ "derive" ] } # impls on pub types
# polyfill until #![feature(strict_provenance)] stabilizes
sptr = "0.3"
libc = "0.2"

[build-dependencies]
bindgen = { version = "0.68.1", default-features = false, features = ["runtime"] }
pgrx-pg-config= { path = "../pgrx-pg-config/", version = "=0.10.2" }
proc-macro2 = "1.0.67"
pgrx-pg-config= { path = "../pgrx-pg-config/", version = "=0.11.0" }
proc-macro2 = "1.0.69"
quote = "1.0.33"
syn = { version = "1.0.109", features = [ "extra-traits", "full", "fold", "parsing" ] }
eyre = "0.6.8"
Expand Down
Loading

0 comments on commit 6bbe8ff

Please sign in to comment.