From 73a831a46a3f3b72164fdb24e1757cd8dcd68dc3 Mon Sep 17 00:00:00 2001 From: Eric Ridge Date: Tue, 14 Mar 2023 10:52:32 -0400 Subject: [PATCH] Update version to 0.7.4 (#1074) --- Cargo.lock | 14 +++++++------- cargo-pgx/Cargo.toml | 6 +++--- cargo-pgx/src/templates/cargo_toml | 4 ++-- nix/templates/default/Cargo.toml | 4 ++-- pgx-macros/Cargo.toml | 4 ++-- pgx-pg-config/Cargo.toml | 2 +- pgx-pg-sys/Cargo.toml | 8 ++++---- pgx-sql-entity-graph/Cargo.toml | 2 +- pgx-tests/Cargo.toml | 8 ++++---- pgx/Cargo.toml | 8 ++++---- 10 files changed, 30 insertions(+), 30 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 9af14d86a..a58554a5f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -256,7 +256,7 @@ dependencies = [ [[package]] name = "cargo-pgx" -version = "0.7.3" +version = "0.7.4" dependencies = [ "atty", "cargo_metadata", @@ -1402,7 +1402,7 @@ dependencies = [ [[package]] name = "pgx" -version = "0.7.3" +version = "0.7.4" dependencies = [ "atomic-traits", "bitflags", @@ -1427,7 +1427,7 @@ dependencies = [ [[package]] name = "pgx-macros" -version = "0.7.3" +version = "0.7.4" dependencies = [ "pgx-sql-entity-graph", "proc-macro2", @@ -1438,7 +1438,7 @@ dependencies = [ [[package]] name = "pgx-pg-config" -version = "0.7.3" +version = "0.7.4" dependencies = [ "dirs", "eyre", @@ -1453,7 +1453,7 @@ dependencies = [ [[package]] name = "pgx-pg-sys" -version = "0.7.3" +version = "0.7.4" dependencies = [ "bindgen", "eyre", @@ -1473,7 +1473,7 @@ dependencies = [ [[package]] name = "pgx-sql-entity-graph" -version = "0.7.3" +version = "0.7.4" dependencies = [ "atty", "convert_case", @@ -1489,7 +1489,7 @@ dependencies = [ [[package]] name = "pgx-tests" -version = "0.7.3" +version = "0.7.4" dependencies = [ "clap-cargo", "eyre", diff --git a/cargo-pgx/Cargo.toml b/cargo-pgx/Cargo.toml index 2e874b401..15276e846 100644 --- a/cargo-pgx/Cargo.toml +++ b/cargo-pgx/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cargo-pgx" -version = "0.7.3" +version = "0.7.4" authors = ["ZomboDB, LLC "] license = "MIT" description = "Cargo subcommand for 'pgx' 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" -pgx-pg-config = { path = "../pgx-pg-config", version = "=0.7.3" } -pgx-sql-entity-graph = { path = "../pgx-sql-entity-graph", version = "=0.7.3" } +pgx-pg-config = { path = "../pgx-pg-config", version = "=0.7.4" } +pgx-sql-entity-graph = { path = "../pgx-sql-entity-graph", version = "=0.7.4" } prettyplease = "0.1.24" proc-macro2 = { version = "1.0.52", features = [ "span-locations" ] } quote = "1.0.26" diff --git a/cargo-pgx/src/templates/cargo_toml b/cargo-pgx/src/templates/cargo_toml index 46335c952..704990e90 100644 --- a/cargo-pgx/src/templates/cargo_toml +++ b/cargo-pgx/src/templates/cargo_toml @@ -16,10 +16,10 @@ pg15 = ["pgx/pg15", "pgx-tests/pg15" ] pg_test = [] [dependencies] -pgx = "=0.7.3" +pgx = "=0.7.4" [dev-dependencies] -pgx-tests = "=0.7.3" +pgx-tests = "=0.7.4" [profile.dev] panic = "unwind" diff --git a/nix/templates/default/Cargo.toml b/nix/templates/default/Cargo.toml index 09d1490e3..f7cf1176c 100644 --- a/nix/templates/default/Cargo.toml +++ b/nix/templates/default/Cargo.toml @@ -16,10 +16,10 @@ pg15 = ["pgx/pg15", "pgx-tests/pg15" ] pg_test = [] [dependencies] -pgx = "=0.7.3" +pgx = "=0.7.4" [dev-dependencies] -pgx-tests = "=0.7.3" +pgx-tests = "=0.7.4" tempfile = "3.2.0" once_cell = "1.7.2" diff --git a/pgx-macros/Cargo.toml b/pgx-macros/Cargo.toml index 7bbf97a75..d49099e26 100644 --- a/pgx-macros/Cargo.toml +++ b/pgx-macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pgx-macros" -version = "0.7.3" +version = "0.7.4" authors = ["ZomboDB, LLC "] license = "MIT" description = "Proc Macros for 'pgx'" @@ -21,7 +21,7 @@ rustc-args = ["--cfg", "docsrs"] no-schema-generation = ["pgx-sql-entity-graph/no-schema-generation"] [dependencies] -pgx-sql-entity-graph = { path = "../pgx-sql-entity-graph", version = "=0.7.3" } +pgx-sql-entity-graph = { path = "../pgx-sql-entity-graph", version = "=0.7.4" } proc-macro2 = "1.0.52" quote = "1.0.26" syn = { version = "1.0.109", features = [ "extra-traits", "full", "fold", "parsing" ] } diff --git a/pgx-pg-config/Cargo.toml b/pgx-pg-config/Cargo.toml index e252ff59e..092a36ec6 100644 --- a/pgx-pg-config/Cargo.toml +++ b/pgx-pg-config/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pgx-pg-config" -version = "0.7.3" +version = "0.7.4" authors = ["ZomboDB, LLC "] license = "MIT" description = "A Postgres pg_config wrapper for 'pgx'" diff --git a/pgx-pg-sys/Cargo.toml b/pgx-pg-sys/Cargo.toml index 4e38c781d..48df3e63b 100644 --- a/pgx-pg-sys/Cargo.toml +++ b/pgx-pg-sys/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pgx-pg-sys" -version = "0.7.3" +version = "0.7.4" authors = ["ZomboDB, LLC "] license = "MIT" description = "Generated Rust bindings for Postgres internals, for use with 'pgx'" @@ -29,8 +29,8 @@ rustdoc-args = ["--cfg", "docsrs"] [dependencies] memoffset = "0.8.0" -pgx-macros = { path = "../pgx-macros/", version = "=0.7.3" } -pgx-sql-entity-graph = { path = "../pgx-sql-entity-graph/", version = "=0.7.3" } +pgx-macros = { path = "../pgx-macros/", version = "=0.7.4" } +pgx-sql-entity-graph = { path = "../pgx-sql-entity-graph/", version = "=0.7.4" } serde = { version = "1.0.156", 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"] } -pgx-pg-config= { path = "../pgx-pg-config/", version = "=0.7.3" } +pgx-pg-config= { path = "../pgx-pg-config/", version = "=0.7.4" } proc-macro2 = "1.0.52" quote = "1.0.26" syn = { version = "1.0.109", features = [ "extra-traits", "full", "fold", "parsing" ] } diff --git a/pgx-sql-entity-graph/Cargo.toml b/pgx-sql-entity-graph/Cargo.toml index 15586cb1e..9df2d8293 100644 --- a/pgx-sql-entity-graph/Cargo.toml +++ b/pgx-sql-entity-graph/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pgx-sql-entity-graph" -version = "0.7.3" +version = "0.7.4" authors = ["ZomboDB, LLC "] license = "MIT" description = "Sql Entity Graph for `pgx`" diff --git a/pgx-tests/Cargo.toml b/pgx-tests/Cargo.toml index b2cd6e417..3f5b894b2 100644 --- a/pgx-tests/Cargo.toml +++ b/pgx-tests/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pgx-tests" -version = "0.7.3" +version = "0.7.4" authors = ["ZomboDB, LLC "] license = "MIT" description = "Test framework for 'pgx'-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.140" -pgx-macros = { path = "../pgx-macros", version = "=0.7.3" } -pgx-pg-config = { path = "../pgx-pg-config", version = "=0.7.3" } +pgx-macros = { path = "../pgx-macros", version = "=0.7.4" } +pgx-pg-config = { path = "../pgx-pg-config", version = "=0.7.4" } postgres = "0.19.4" regex = "1.7.1" serde = "1.0.156" @@ -55,4 +55,4 @@ eyre = "0.6.8" # testing functions that return `eyre::Result` path = "../pgx" default-features = false features = [ "time-crate" ] # testing purposes -version = "=0.7.3" +version = "=0.7.4" diff --git a/pgx/Cargo.toml b/pgx/Cargo.toml index 3752581fb..e9dd61be7 100644 --- a/pgx/Cargo.toml +++ b/pgx/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pgx" -version = "0.7.3" +version = "0.7.4" authors = ["ZomboDB, LLC "] license = "MIT" description = "pgx: A Rust framework for creating Postgres extensions" @@ -34,9 +34,9 @@ no-default-features = true rustc-args = ["--cfg", "docsrs"] [dependencies] -pgx-macros = { path = "../pgx-macros", version = "=0.7.3" } -pgx-pg-sys = { path = "../pgx-pg-sys", version = "=0.7.3" } -pgx-sql-entity-graph = { path = "../pgx-sql-entity-graph", version = "=0.7.3" } +pgx-macros = { path = "../pgx-macros", version = "=0.7.4" } +pgx-pg-sys = { path = "../pgx-pg-sys", version = "=0.7.4" } +pgx-sql-entity-graph = { path = "../pgx-sql-entity-graph", version = "=0.7.4" } # used to internally impl things once_cell = "1.17.1" # polyfill until std::lazy::OnceCell stabilizes