diff --git a/Cargo.lock b/Cargo.lock index 466f12725..4ef3bc4f7 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -305,7 +305,7 @@ dependencies = [ [[package]] name = "cargo-pgrx" -version = "0.8.2" +version = "0.8.3" dependencies = [ "atty", "cargo_metadata", @@ -1473,7 +1473,7 @@ dependencies = [ [[package]] name = "pgrx" -version = "0.8.2" +version = "0.8.3" dependencies = [ "atomic-traits", "bitflags", @@ -1497,7 +1497,7 @@ dependencies = [ [[package]] name = "pgrx-macros" -version = "0.8.2" +version = "0.8.3" dependencies = [ "pgrx-sql-entity-graph", "proc-macro2", @@ -1508,7 +1508,7 @@ dependencies = [ [[package]] name = "pgrx-pg-config" -version = "0.8.2" +version = "0.8.3" dependencies = [ "cargo_toml", "dirs", @@ -1524,7 +1524,7 @@ dependencies = [ [[package]] name = "pgrx-pg-sys" -version = "0.8.2" +version = "0.8.3" dependencies = [ "bindgen", "eyre", @@ -1544,7 +1544,7 @@ dependencies = [ [[package]] name = "pgrx-sql-entity-graph" -version = "0.8.2" +version = "0.8.3" dependencies = [ "atty", "convert_case", @@ -1560,7 +1560,7 @@ dependencies = [ [[package]] name = "pgrx-tests" -version = "0.8.2" +version = "0.8.3" dependencies = [ "clap-cargo", "eyre", diff --git a/cargo-pgrx/Cargo.toml b/cargo-pgrx/Cargo.toml index 5da83fd49..2a4f8dd30 100644 --- a/cargo-pgrx/Cargo.toml +++ b/cargo-pgrx/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cargo-pgrx" -version = "0.8.2" +version = "0.8.3" 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.2" } -pgrx-sql-entity-graph = { path = "../pgrx-sql-entity-graph", version = "=0.8.2" } +pgrx-pg-config = { path = "../pgrx-pg-config", version = "=0.8.3" } +pgrx-sql-entity-graph = { path = "../pgrx-sql-entity-graph", version = "=0.8.3" } 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 14c81856f..061c0016d 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.2" +pgrx = "=0.8.3" [dev-dependencies] -pgrx-tests = "=0.8.2" +pgrx-tests = "=0.8.3" [profile.dev] panic = "unwind" diff --git a/nix/templates/default/Cargo.toml b/nix/templates/default/Cargo.toml index 4b2db5eca..cad78ac78 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.2" +pgrx = "=0.8.3" [dev-dependencies] -pgrx-tests = "=0.8.2" +pgrx-tests = "=0.8.3" tempfile = "3.2.0" once_cell = "1.7.2" diff --git a/pgrx-macros/Cargo.toml b/pgrx-macros/Cargo.toml index 93f6376b0..4e732680e 100644 --- a/pgrx-macros/Cargo.toml +++ b/pgrx-macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pgrx-macros" -version = "0.8.2" +version = "0.8.3" 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.2" } +pgrx-sql-entity-graph = { path = "../pgrx-sql-entity-graph", version = "=0.8.3" } 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 df5ff8366..0f2d7d65d 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.2" +version = "0.8.3" 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 29fd366c7..0e38e8750 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.2" +version = "0.8.3" 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.2" } -pgrx-sql-entity-graph = { path = "../pgrx-sql-entity-graph/", version = "=0.8.2" } +pgrx-macros = { path = "../pgrx-macros/", version = "=0.8.3" } +pgrx-sql-entity-graph = { path = "../pgrx-sql-entity-graph/", version = "=0.8.3" } 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.2" } +pgrx-pg-config= { path = "../pgrx-pg-config/", version = "=0.8.3" } 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 5e735729b..d18c9bf8c 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.2" +version = "0.8.3" authors = ["ZomboDB, LLC "] license = "MIT" description = "Sql Entity Graph for `pgrx`" diff --git a/pgrx-tests/Cargo.toml b/pgrx-tests/Cargo.toml index 87c6a6c21..4651b481c 100644 --- a/pgrx-tests/Cargo.toml +++ b/pgrx-tests/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pgrx-tests" -version = "0.8.2" +version = "0.8.3" 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.2" } -pgrx-pg-config = { path = "../pgrx-pg-config", version = "=0.8.2" } +pgrx-macros = { path = "../pgrx-macros", version = "=0.8.3" } +pgrx-pg-config = { path = "../pgrx-pg-config", version = "=0.8.3" } 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.2" +version = "=0.8.3" diff --git a/pgrx/Cargo.toml b/pgrx/Cargo.toml index 19e44f738..d28700fd0 100644 --- a/pgrx/Cargo.toml +++ b/pgrx/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pgrx" -version = "0.8.2" +version = "0.8.3" 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.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" } +pgrx-macros = { path = "../pgrx-macros", version = "=0.8.3" } +pgrx-pg-sys = { path = "../pgrx-pg-sys", version = "=0.8.3" } +pgrx-sql-entity-graph = { path = "../pgrx-sql-entity-graph", version = "=0.8.3" } # used to internally impl things once_cell = "1.17.1" # polyfill until std::lazy::OnceCell stabilizes