From fc1112eef9fb912978d157c556edfcd69a9daa3a Mon Sep 17 00:00:00 2001 From: "Eric B. Ridge" Date: Fri, 14 Jul 2023 00:19:32 +0000 Subject: [PATCH] bump to v0.9.8 --- 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-pg-sys/src/pg11.rs | 2 +- pgrx-pg-sys/src/pg12.rs | 2 +- pgrx-pg-sys/src/pg13.rs | 2 +- pgrx-pg-sys/src/pg14.rs | 2 +- pgrx-pg-sys/src/pg15.rs | 2 +- pgrx-sql-entity-graph/Cargo.toml | 2 +- pgrx-tests/Cargo.toml | 8 ++++---- pgrx/Cargo.toml | 8 ++++---- 15 files changed, 35 insertions(+), 35 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 928a46830f..3c0d9d88f5 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -318,7 +318,7 @@ dependencies = [ [[package]] name = "cargo-pgrx" -version = "0.9.7" +version = "0.9.8" dependencies = [ "atty", "cargo_metadata", @@ -1545,7 +1545,7 @@ dependencies = [ [[package]] name = "pgrx" -version = "0.9.7" +version = "0.9.8" dependencies = [ "atomic-traits", "bitflags 2.3.3", @@ -1568,7 +1568,7 @@ dependencies = [ [[package]] name = "pgrx-macros" -version = "0.9.7" +version = "0.9.8" dependencies = [ "pgrx-sql-entity-graph", "proc-macro2", @@ -1579,7 +1579,7 @@ dependencies = [ [[package]] name = "pgrx-pg-config" -version = "0.9.7" +version = "0.9.8" dependencies = [ "cargo_toml", "dirs", @@ -1595,7 +1595,7 @@ dependencies = [ [[package]] name = "pgrx-pg-sys" -version = "0.9.7" +version = "0.9.8" dependencies = [ "bindgen", "eyre", @@ -1615,7 +1615,7 @@ dependencies = [ [[package]] name = "pgrx-sql-entity-graph" -version = "0.9.7" +version = "0.9.8" dependencies = [ "atty", "convert_case", @@ -1631,7 +1631,7 @@ dependencies = [ [[package]] name = "pgrx-tests" -version = "0.9.7" +version = "0.9.8" dependencies = [ "clap-cargo", "eyre", diff --git a/cargo-pgrx/Cargo.toml b/cargo-pgrx/Cargo.toml index 8fdd7c9c80..67f5a7190e 100644 --- a/cargo-pgrx/Cargo.toml +++ b/cargo-pgrx/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cargo-pgrx" -version = "0.9.7" +version = "0.9.8" 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.16.0" -pgrx-pg-config = { path = "../pgrx-pg-config", version = "=0.9.7" } -pgrx-sql-entity-graph = { path = "../pgrx-sql-entity-graph", version = "=0.9.7" } +pgrx-pg-config = { path = "../pgrx-pg-config", version = "=0.9.8" } +pgrx-sql-entity-graph = { path = "../pgrx-sql-entity-graph", version = "=0.9.8" } prettyplease = "0.2.10" proc-macro2 = { version = "1.0.64", features = [ "span-locations" ] } quote = "1.0.29" diff --git a/cargo-pgrx/src/templates/cargo_toml b/cargo-pgrx/src/templates/cargo_toml index 6c383d1698..97247f1362 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.9.7" +pgrx = "=0.9.8" [dev-dependencies] -pgrx-tests = "=0.9.7" +pgrx-tests = "=0.9.8" [profile.dev] panic = "unwind" diff --git a/nix/templates/default/Cargo.toml b/nix/templates/default/Cargo.toml index ebf71e7da8..eef725a63a 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.9.7" +pgrx = "=0.9.8" [dev-dependencies] -pgrx-tests = "=0.9.7" +pgrx-tests = "=0.9.8" tempfile = "3.2.0" once_cell = "1.7.2" diff --git a/pgrx-macros/Cargo.toml b/pgrx-macros/Cargo.toml index ca646f3056..f54afaff82 100644 --- a/pgrx-macros/Cargo.toml +++ b/pgrx-macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pgrx-macros" -version = "0.9.7" +version = "0.9.8" 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.9.7" } +pgrx-sql-entity-graph = { path = "../pgrx-sql-entity-graph", version = "=0.9.8" } proc-macro2 = "1.0.64" quote = "1.0.29" 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 be343b283e..27909dd162 100644 --- a/pgrx-pg-config/Cargo.toml +++ b/pgrx-pg-config/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pgrx-pg-config" -version = "0.9.7" +version = "0.9.8" 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 68bab0a051..9e79b64396 100644 --- a/pgrx-pg-sys/Cargo.toml +++ b/pgrx-pg-sys/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pgrx-pg-sys" -version = "0.9.7" +version = "0.9.8" 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.9.0" -pgrx-macros = { path = "../pgrx-macros/", version = "=0.9.7" } -pgrx-sql-entity-graph = { path = "../pgrx-sql-entity-graph/", version = "=0.9.7" } +pgrx-macros = { path = "../pgrx-macros/", version = "=0.9.8" } +pgrx-sql-entity-graph = { path = "../pgrx-sql-entity-graph/", version = "=0.9.8" } serde = { version = "1.0", 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.66.1", default-features = false, features = ["runtime"] } -pgrx-pg-config= { path = "../pgrx-pg-config/", version = "=0.9.7" } +pgrx-pg-config= { path = "../pgrx-pg-config/", version = "=0.9.8" } proc-macro2 = "1.0.64" quote = "1.0.29" syn = { version = "1.0.109", features = [ "extra-traits", "full", "fold", "parsing" ] } diff --git a/pgrx-pg-sys/src/pg11.rs b/pgrx-pg-sys/src/pg11.rs index fdcfe737dd..3cf4b0a1be 100644 --- a/pgrx-pg-sys/src/pg11.rs +++ b/pgrx-pg-sys/src/pg11.rs @@ -727,9 +727,9 @@ pub const LC_IDENTIFICATION_MASK: u32 = 4096; pub const LC_ALL_MASK: u32 = 8127; pub const HAVE_PG_ATTRIBUTE_NORETURN: u32 = 1; pub const HAVE_PRAGMA_GCC_SYSTEM_HEADER: u32 = 1; +pub const __bool_true_false_are_defined: u32 = 1; pub const true_: u32 = 1; pub const false_: u32 = 0; -pub const __bool_true_false_are_defined: u32 = 1; pub const USE_STDBOOL: u32 = 1; pub const INT64_FORMAT: &[u8; 4] = b"%ld\0"; pub const UINT64_FORMAT: &[u8; 4] = b"%lu\0"; diff --git a/pgrx-pg-sys/src/pg12.rs b/pgrx-pg-sys/src/pg12.rs index ece7734450..9a6fa110ba 100644 --- a/pgrx-pg-sys/src/pg12.rs +++ b/pgrx-pg-sys/src/pg12.rs @@ -735,9 +735,9 @@ pub const LC_IDENTIFICATION_MASK: u32 = 4096; pub const LC_ALL_MASK: u32 = 8127; pub const HAVE_PG_ATTRIBUTE_NORETURN: u32 = 1; pub const HAVE_PRAGMA_GCC_SYSTEM_HEADER: u32 = 1; +pub const __bool_true_false_are_defined: u32 = 1; pub const true_: u32 = 1; pub const false_: u32 = 0; -pub const __bool_true_false_are_defined: u32 = 1; pub const USE_STDBOOL: u32 = 1; pub const INT64_FORMAT: &[u8; 4] = b"%ld\0"; pub const UINT64_FORMAT: &[u8; 4] = b"%lu\0"; diff --git a/pgrx-pg-sys/src/pg13.rs b/pgrx-pg-sys/src/pg13.rs index f784a53950..e00d416b76 100644 --- a/pgrx-pg-sys/src/pg13.rs +++ b/pgrx-pg-sys/src/pg13.rs @@ -729,9 +729,9 @@ pub const LC_IDENTIFICATION_MASK: u32 = 4096; pub const LC_ALL_MASK: u32 = 8127; pub const HAVE_PG_ATTRIBUTE_NORETURN: u32 = 1; pub const HAVE_PRAGMA_GCC_SYSTEM_HEADER: u32 = 1; +pub const __bool_true_false_are_defined: u32 = 1; pub const true_: u32 = 1; pub const false_: u32 = 0; -pub const __bool_true_false_are_defined: u32 = 1; pub const INT64_FORMAT: &[u8; 4] = b"%ld\0"; pub const UINT64_FORMAT: &[u8; 4] = b"%lu\0"; pub const HAVE_INT128: u32 = 1; diff --git a/pgrx-pg-sys/src/pg14.rs b/pgrx-pg-sys/src/pg14.rs index cfe32d7a7f..f445a656d7 100644 --- a/pgrx-pg-sys/src/pg14.rs +++ b/pgrx-pg-sys/src/pg14.rs @@ -736,9 +736,9 @@ pub const LC_IDENTIFICATION_MASK: u32 = 4096; pub const LC_ALL_MASK: u32 = 8127; pub const HAVE_PG_ATTRIBUTE_NORETURN: u32 = 1; pub const HAVE_PRAGMA_GCC_SYSTEM_HEADER: u32 = 1; +pub const __bool_true_false_are_defined: u32 = 1; pub const true_: u32 = 1; pub const false_: u32 = 0; -pub const __bool_true_false_are_defined: u32 = 1; pub const INT64_FORMAT: &[u8; 4] = b"%ld\0"; pub const UINT64_FORMAT: &[u8; 4] = b"%lu\0"; pub const HAVE_INT128: u32 = 1; diff --git a/pgrx-pg-sys/src/pg15.rs b/pgrx-pg-sys/src/pg15.rs index 590aad796c..687e9f3ea8 100644 --- a/pgrx-pg-sys/src/pg15.rs +++ b/pgrx-pg-sys/src/pg15.rs @@ -740,9 +740,9 @@ pub const LC_IDENTIFICATION_MASK: u32 = 4096; pub const LC_ALL_MASK: u32 = 8127; pub const HAVE_PG_ATTRIBUTE_NORETURN: u32 = 1; pub const HAVE_PRAGMA_GCC_SYSTEM_HEADER: u32 = 1; +pub const __bool_true_false_are_defined: u32 = 1; pub const true_: u32 = 1; pub const false_: u32 = 0; -pub const __bool_true_false_are_defined: u32 = 1; pub const INT64_FORMAT: &[u8; 4] = b"%ld\0"; pub const UINT64_FORMAT: &[u8; 4] = b"%lu\0"; pub const HAVE_INT128: u32 = 1; diff --git a/pgrx-sql-entity-graph/Cargo.toml b/pgrx-sql-entity-graph/Cargo.toml index e5c8072345..2ace2eec31 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.9.7" +version = "0.9.8" authors = ["ZomboDB, LLC "] license = "MIT" description = "Sql Entity Graph for `pgrx`" diff --git a/pgrx-tests/Cargo.toml b/pgrx-tests/Cargo.toml index 73aaf40fb6..842727bb42 100644 --- a/pgrx-tests/Cargo.toml +++ b/pgrx-tests/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pgrx-tests" -version = "0.9.7" +version = "0.9.8" 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.18.0" libc = "0.2.147" -pgrx-macros = { path = "../pgrx-macros", version = "=0.9.7" } -pgrx-pg-config = { path = "../pgrx-pg-config", version = "=0.9.7" } +pgrx-macros = { path = "../pgrx-macros", version = "=0.9.8" } +pgrx-pg-config = { path = "../pgrx-pg-config", version = "=0.9.8" } postgres = "0.19.5" regex = "1.9.1" serde = "1.0" @@ -54,4 +54,4 @@ eyre = "0.6.8" # testing functions that return `eyre::Result` [dependencies.pgrx] path = "../pgrx" default-features = false -version = "=0.9.7" +version = "=0.9.8" diff --git a/pgrx/Cargo.toml b/pgrx/Cargo.toml index 0cc7e632ea..bb97cf109d 100644 --- a/pgrx/Cargo.toml +++ b/pgrx/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pgrx" -version = "0.9.7" +version = "0.9.8" authors = ["ZomboDB, LLC "] license = "MIT" description = "pgrx: A Rust framework for creating Postgres extensions" @@ -33,9 +33,9 @@ no-default-features = true rustc-args = ["--cfg", "docsrs"] [dependencies] -pgrx-macros = { path = "../pgrx-macros", version = "=0.9.7" } -pgrx-pg-sys = { path = "../pgrx-pg-sys", version = "=0.9.7" } -pgrx-sql-entity-graph = { path = "../pgrx-sql-entity-graph", version = "=0.9.7" } +pgrx-macros = { path = "../pgrx-macros", version = "=0.9.8" } +pgrx-pg-sys = { path = "../pgrx-pg-sys", version = "=0.9.8" } +pgrx-sql-entity-graph = { path = "../pgrx-sql-entity-graph", version = "=0.9.8" } # used to internally impl things once_cell = "1.18.0" # polyfill until std::lazy::OnceCell stabilizes