From 39087b495ded8b0e1c26ca0b22087ede7d57639b Mon Sep 17 00:00:00 2001 From: Eric Ridge Date: Thu, 27 Apr 2023 14:16:02 -0400 Subject: [PATCH] Update version to 0.8.2 (#1126) --- Cargo.lock | 14 +++++++------- cargo-pgrx/Cargo.toml | 6 +++--- cargo-pgrx/src/templates/cargo_toml | 4 ++-- nix/templates/default/Cargo.toml | 4 ++-- pgrx-macros/Cargo.toml | 4 ++-- pgrx-pg-config/Cargo.toml | 2 +- pgrx-pg-sys/Cargo.toml | 8 ++++---- pgrx-sql-entity-graph/Cargo.toml | 2 +- pgrx-tests/Cargo.toml | 8 ++++---- pgrx/Cargo.toml | 8 ++++---- 10 files changed, 30 insertions(+), 30 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 83a04a70e..9123b3d90 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -305,7 +305,7 @@ dependencies = [ [[package]] name = "cargo-pgrx" -version = "0.8.1" +version = "0.8.2" dependencies = [ "atty", "cargo_metadata", @@ -1464,7 +1464,7 @@ dependencies = [ [[package]] name = "pgrx" -version = "0.8.1" +version = "0.8.2" dependencies = [ "atomic-traits", "bitflags", @@ -1488,7 +1488,7 @@ dependencies = [ [[package]] name = "pgrx-macros" -version = "0.8.1" +version = "0.8.2" dependencies = [ "pgrx-sql-entity-graph", "proc-macro2", @@ -1499,7 +1499,7 @@ dependencies = [ [[package]] name = "pgrx-pg-config" -version = "0.8.1" +version = "0.8.2" dependencies = [ "cargo_toml", "dirs", @@ -1515,7 +1515,7 @@ dependencies = [ [[package]] name = "pgrx-pg-sys" -version = "0.8.1" +version = "0.8.2" dependencies = [ "bindgen", "eyre", @@ -1535,7 +1535,7 @@ dependencies = [ [[package]] name = "pgrx-sql-entity-graph" -version = "0.8.1" +version = "0.8.2" dependencies = [ "atty", "convert_case", @@ -1551,7 +1551,7 @@ dependencies = [ [[package]] name = "pgrx-tests" -version = "0.8.1" +version = "0.8.2" dependencies = [ "clap-cargo", "eyre", diff --git a/cargo-pgrx/Cargo.toml b/cargo-pgrx/Cargo.toml index 98ccf5e77..b39199591 100644 --- a/cargo-pgrx/Cargo.toml +++ b/cargo-pgrx/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cargo-pgrx" -version = "0.8.1" +version = "0.8.2" authors = ["ZomboDB, LLC "] license = "MIT" description = "Cargo subcommand for 'pgrx' to make Postgres extension development easy" @@ -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.8.1" } -pgrx-sql-entity-graph = { path = "../pgrx-sql-entity-graph", version = "=0.8.1" } +pgrx-pg-config = { path = "../pgrx-pg-config", version = "=0.8.2" } +pgrx-sql-entity-graph = { path = "../pgrx-sql-entity-graph", version = "=0.8.2" } prettyplease = "0.1.25" proc-macro2 = { version = "1.0.56", features = [ "span-locations" ] } quote = "1.0.26" diff --git a/cargo-pgrx/src/templates/cargo_toml b/cargo-pgrx/src/templates/cargo_toml index 9bfac6d39..14c81856f 100644 --- a/cargo-pgrx/src/templates/cargo_toml +++ b/cargo-pgrx/src/templates/cargo_toml @@ -16,10 +16,10 @@ pg15 = ["pgrx/pg15", "pgrx-tests/pg15" ] pg_test = [] [dependencies] -pgrx = "=0.8.1" +pgrx = "=0.8.2" [dev-dependencies] -pgrx-tests = "=0.8.1" +pgrx-tests = "=0.8.2" [profile.dev] panic = "unwind" diff --git a/nix/templates/default/Cargo.toml b/nix/templates/default/Cargo.toml index 253dda346..4b2db5eca 100644 --- a/nix/templates/default/Cargo.toml +++ b/nix/templates/default/Cargo.toml @@ -16,10 +16,10 @@ pg15 = ["pgrx/pg15", "pgrx-tests/pg15" ] pg_test = [] [dependencies] -pgrx = "=0.8.1" +pgrx = "=0.8.2" [dev-dependencies] -pgrx-tests = "=0.8.1" +pgrx-tests = "=0.8.2" tempfile = "3.2.0" once_cell = "1.7.2" diff --git a/pgrx-macros/Cargo.toml b/pgrx-macros/Cargo.toml index cebdaacdd..93f6376b0 100644 --- a/pgrx-macros/Cargo.toml +++ b/pgrx-macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pgrx-macros" -version = "0.8.1" +version = "0.8.2" authors = ["ZomboDB, LLC "] license = "MIT" description = "Proc Macros for 'pgrx'" @@ -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.8.1" } +pgrx-sql-entity-graph = { path = "../pgrx-sql-entity-graph", version = "=0.8.2" } proc-macro2 = "1.0.56" quote = "1.0.26" syn = { version = "1.0.109", features = [ "extra-traits", "full", "fold", "parsing" ] } diff --git a/pgrx-pg-config/Cargo.toml b/pgrx-pg-config/Cargo.toml index 947d083cd..df5ff8366 100644 --- a/pgrx-pg-config/Cargo.toml +++ b/pgrx-pg-config/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pgrx-pg-config" -version = "0.8.1" +version = "0.8.2" authors = ["ZomboDB, LLC "] license = "MIT" description = "A Postgres pg_config wrapper for 'pgrx'" diff --git a/pgrx-pg-sys/Cargo.toml b/pgrx-pg-sys/Cargo.toml index 10bd99c1f..29fd366c7 100644 --- a/pgrx-pg-sys/Cargo.toml +++ b/pgrx-pg-sys/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pgrx-pg-sys" -version = "0.8.1" +version = "0.8.2" authors = ["ZomboDB, LLC "] license = "MIT" description = "Generated Rust bindings for Postgres internals, for use with 'pgrx'" @@ -29,8 +29,8 @@ rustdoc-args = ["--cfg", "docsrs"] [dependencies] memoffset = "0.8.0" -pgrx-macros = { path = "../pgrx-macros/", version = "=0.8.1" } -pgrx-sql-entity-graph = { path = "../pgrx-sql-entity-graph/", version = "=0.8.1" } +pgrx-macros = { path = "../pgrx-macros/", version = "=0.8.2" } +pgrx-sql-entity-graph = { path = "../pgrx-sql-entity-graph/", version = "=0.8.2" } serde = { version = "1.0.160", features = [ "derive" ] } # impls on pub types # polyfill until #![feature(strict_provenance)] stabilizes sptr = "0.3" @@ -38,7 +38,7 @@ libc = "0.2" [build-dependencies] bindgen = { version = "0.60.1", default-features = false, features = ["runtime"] } -pgrx-pg-config= { path = "../pgrx-pg-config/", version = "=0.8.1" } +pgrx-pg-config= { path = "../pgrx-pg-config/", version = "=0.8.2" } proc-macro2 = "1.0.56" quote = "1.0.26" syn = { version = "1.0.109", features = [ "extra-traits", "full", "fold", "parsing" ] } diff --git a/pgrx-sql-entity-graph/Cargo.toml b/pgrx-sql-entity-graph/Cargo.toml index d7437d933..5e735729b 100644 --- a/pgrx-sql-entity-graph/Cargo.toml +++ b/pgrx-sql-entity-graph/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pgrx-sql-entity-graph" -version = "0.8.1" +version = "0.8.2" authors = ["ZomboDB, LLC "] license = "MIT" description = "Sql Entity Graph for `pgrx`" diff --git a/pgrx-tests/Cargo.toml b/pgrx-tests/Cargo.toml index 6ee7e946c..87c6a6c21 100644 --- a/pgrx-tests/Cargo.toml +++ b/pgrx-tests/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pgrx-tests" -version = "0.8.1" +version = "0.8.2" authors = ["ZomboDB, LLC "] license = "MIT" description = "Test framework for 'pgrx'-based Postgres extensions" @@ -37,8 +37,8 @@ clap-cargo = "0.10.0" owo-colors = "3.5.0" once_cell = "1.17.1" libc = "0.2.142" -pgrx-macros = { path = "../pgrx-macros", version = "=0.8.1" } -pgrx-pg-config = { path = "../pgrx-pg-config", version = "=0.8.1" } +pgrx-macros = { path = "../pgrx-macros", version = "=0.8.2" } +pgrx-pg-config = { path = "../pgrx-pg-config", version = "=0.8.2" } postgres = "0.19.5" regex = "1.8.1" serde = "1.0.160" @@ -55,4 +55,4 @@ eyre = "0.6.8" # testing functions that return `eyre::Result` path = "../pgrx" default-features = false features = [ "time-crate" ] # testing purposes -version = "=0.8.1" +version = "=0.8.2" diff --git a/pgrx/Cargo.toml b/pgrx/Cargo.toml index e6dc03f1b..98e2d2bb6 100644 --- a/pgrx/Cargo.toml +++ b/pgrx/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pgrx" -version = "0.8.1" +version = "0.8.2" authors = ["ZomboDB, LLC "] license = "MIT" description = "pgrx: A Rust framework for creating Postgres extensions" @@ -34,9 +34,9 @@ no-default-features = true rustc-args = ["--cfg", "docsrs"] [dependencies] -pgrx-macros = { path = "../pgrx-macros", version = "=0.8.1" } -pgrx-pg-sys = { path = "../pgrx-pg-sys", version = "=0.8.1" } -pgrx-sql-entity-graph = { path = "../pgrx-sql-entity-graph", version = "=0.8.1" } +pgrx-macros = { path = "../pgrx-macros", version = "=0.8.2" } +pgrx-pg-sys = { path = "../pgrx-pg-sys", version = "=0.8.2" } +pgrx-sql-entity-graph = { path = "../pgrx-sql-entity-graph", version = "=0.8.2" } # used to internally impl things once_cell = "1.17.1" # polyfill until std::lazy::OnceCell stabilizes