Skip to content

Commit

Permalink
Update version to 0.9.1 (#1155)
Browse files Browse the repository at this point in the history
  • Loading branch information
eeeebbbbrrrr authored May 31, 2023
1 parent 1ab34bd commit fd3f360
Show file tree
Hide file tree
Showing 10 changed files with 47 additions and 51 deletions.
44 changes: 20 additions & 24 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions cargo-pgrx/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cargo-pgrx"
version = "0.9.0"
version = "0.9.1"
authors = ["ZomboDB, LLC <[email protected]>"]
license = "MIT"
description = "Cargo subcommand for 'pgrx' to make Postgres extension development easy"
Expand All @@ -23,8 +23,8 @@ semver = "1.0.17"
owo-colors = { version = "3.5.0", features = [ "supports-colors" ] }
env_proxy = "0.4.1"
num_cpus = "1.15.0"
pgrx-pg-config = { path = "../pgrx-pg-config", version = "=0.9.0" }
pgrx-sql-entity-graph = { path = "../pgrx-sql-entity-graph", version = "=0.9.0" }
pgrx-pg-config = { path = "../pgrx-pg-config", version = "=0.9.1" }
pgrx-sql-entity-graph = { path = "../pgrx-sql-entity-graph", version = "=0.9.1" }
prettyplease = "0.2.6"
proc-macro2 = { version = "1.0.59", features = [ "span-locations" ] }
quote = "1.0.28"
Expand All @@ -40,7 +40,7 @@ unescape = "0.1.0"
fork = "0.1.21"
libloading = "0.8.0"
object = "0.31.1"
once_cell = "1.17.1"
once_cell = "1.17.2"
eyre = "0.6.8"
color-eyre = "0.6.2"
tracing = "0.1"
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 @@ -16,10 +16,10 @@ pg15 = ["pgrx/pg15", "pgrx-tests/pg15" ]
pg_test = []

[dependencies]
pgrx = "=0.9.0"
pgrx = "=0.9.1"

[dev-dependencies]
pgrx-tests = "=0.9.0"
pgrx-tests = "=0.9.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 = ["pgrx/pg15", "pgrx-tests/pg15" ]
pg_test = []

[dependencies]
pgrx = "=0.9.0"
pgrx = "=0.9.1"

[dev-dependencies]
pgrx-tests = "=0.9.0"
pgrx-tests = "=0.9.1"
tempfile = "3.2.0"
once_cell = "1.7.2"

Expand Down
4 changes: 2 additions & 2 deletions pgrx-macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pgrx-macros"
version = "0.9.0"
version = "0.9.1"
authors = ["ZomboDB, LLC <[email protected]>"]
license = "MIT"
description = "Proc Macros for 'pgrx'"
Expand All @@ -21,7 +21,7 @@ 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.9.0" }
pgrx-sql-entity-graph = { path = "../pgrx-sql-entity-graph", version = "=0.9.1" }
proc-macro2 = "1.0.59"
quote = "1.0.28"
syn = { version = "1.0.109", features = [ "extra-traits", "full", "fold", "parsing" ] }
Expand Down
2 changes: 1 addition & 1 deletion pgrx-pg-config/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pgrx-pg-config"
version = "0.9.0"
version = "0.9.1"
authors = ["ZomboDB, LLC <[email protected]>"]
license = "MIT"
description = "A Postgres pg_config wrapper for 'pgrx'"
Expand Down
10 changes: 5 additions & 5 deletions pgrx-pg-sys/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pgrx-pg-sys"
version = "0.9.0"
version = "0.9.1"
authors = ["ZomboDB, LLC <[email protected]>"]
license = "MIT"
description = "Generated Rust bindings for Postgres internals, for use with 'pgrx'"
Expand Down Expand Up @@ -29,19 +29,19 @@ rustdoc-args = ["--cfg", "docsrs"]

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

[build-dependencies]
bindgen = { version = "0.65.1", default-features = false, features = ["runtime"] }
pgrx-pg-config= { path = "../pgrx-pg-config/", version = "=0.9.0" }
pgrx-pg-config= { path = "../pgrx-pg-config/", version = "=0.9.1" }
proc-macro2 = "1.0.59"
quote = "1.0.28"
syn = { version = "1.0.109", 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.17.1"
once_cell = "1.17.2"
2 changes: 1 addition & 1 deletion pgrx-sql-entity-graph/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pgrx-sql-entity-graph"
version = "0.9.0"
version = "0.9.1"
authors = ["ZomboDB, LLC <[email protected]>"]
license = "MIT"
description = "Sql Entity Graph for `pgrx`"
Expand Down
10 changes: 5 additions & 5 deletions pgrx-tests/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pgrx-tests"
version = "0.9.0"
version = "0.9.1"
authors = ["ZomboDB, LLC <[email protected]>"]
license = "MIT"
description = "Test framework for 'pgrx'-based Postgres extensions"
Expand Down Expand Up @@ -35,10 +35,10 @@ rustdoc-args = ["--cfg", "docsrs"]
[dependencies]
clap-cargo = "0.10.0"
owo-colors = "3.5.0"
once_cell = "1.17.1"
once_cell = "1.17.2"
libc = "0.2.144"
pgrx-macros = { path = "../pgrx-macros", version = "=0.9.0" }
pgrx-pg-config = { path = "../pgrx-pg-config", version = "=0.9.0" }
pgrx-macros = { path = "../pgrx-macros", version = "=0.9.1" }
pgrx-pg-config = { path = "../pgrx-pg-config", version = "=0.9.1" }
postgres = "0.19.5"
regex = "1.8.3"
serde = "1.0.163"
Expand All @@ -53,4 +53,4 @@ eyre = "0.6.8" # testing functions that return `eyre::Result`
[dependencies.pgrx]
path = "../pgrx"
default-features = false
version = "=0.9.0"
version = "=0.9.1"
10 changes: 5 additions & 5 deletions pgrx/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pgrx"
version = "0.9.0"
version = "0.9.1"
authors = ["ZomboDB, LLC <[email protected]>"]
license = "MIT"
description = "pgrx: A Rust framework for creating Postgres extensions"
Expand Down Expand Up @@ -33,12 +33,12 @@ no-default-features = true
rustc-args = ["--cfg", "docsrs"]

[dependencies]
pgrx-macros = { path = "../pgrx-macros", version = "=0.9.0" }
pgrx-pg-sys = { path = "../pgrx-pg-sys", version = "=0.9.0" }
pgrx-sql-entity-graph = { path = "../pgrx-sql-entity-graph", version = "=0.9.0" }
pgrx-macros = { path = "../pgrx-macros", version = "=0.9.1" }
pgrx-pg-sys = { path = "../pgrx-pg-sys", version = "=0.9.1" }
pgrx-sql-entity-graph = { path = "../pgrx-sql-entity-graph", version = "=0.9.1" }

# used to internally impl things
once_cell = "1.17.1" # polyfill until std::lazy::OnceCell stabilizes
once_cell = "1.17.2" # polyfill until std::lazy::OnceCell stabilizes
seq-macro = "0.3" # impls loops in macros
uuid = { version = "1.3.3", features = [ "v4" ] } # PgLwLock and shmem
enum-map = "2.5.0"
Expand Down

0 comments on commit fd3f360

Please sign in to comment.