From bdc426cc81aa6ba8db31c8d69aa076d23aee458f Mon Sep 17 00:00:00 2001 From: Ana Hobden Date: Fri, 11 Feb 2022 10:28:00 -0800 Subject: [PATCH] Release 0.3.1 Signed-off-by: Ana Hobden --- cargo-pgx/Cargo.toml | 4 ++-- cargo-pgx/src/templates/cargo_toml | 6 +++--- nix/templates/default/Cargo.toml | 8 ++++---- pgx-macros/Cargo.toml | 4 ++-- pgx-pg-sys/Cargo.toml | 6 +++--- pgx-tests/Cargo.toml | 8 ++++---- pgx-utils/Cargo.toml | 2 +- 7 files changed, 19 insertions(+), 19 deletions(-) diff --git a/cargo-pgx/Cargo.toml b/cargo-pgx/Cargo.toml index 11760c8076..2086220d5b 100644 --- a/cargo-pgx/Cargo.toml +++ b/cargo-pgx/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cargo-pgx" -version = "0.3.0" +version = "0.3.1" authors = ["ZomboDB, LLC "] edition = "2018" license = "MIT" @@ -22,7 +22,7 @@ semver = "1.0.5" colored = "2.0.0" env_proxy = "0.4.1" num_cpus = "1.13.1" -pgx-utils = { path = "../pgx-utils", version = "0.3.0" } +pgx-utils = { path = "../pgx-utils", version = "0.3.1" } proc-macro2 = { version = "1.0.36", features = [ "span-locations" ] } quote = "1.0.15" rayon = "1.5.1" diff --git a/cargo-pgx/src/templates/cargo_toml b/cargo-pgx/src/templates/cargo_toml index 3d011bceee..17e2aa2837 100644 --- a/cargo-pgx/src/templates/cargo_toml +++ b/cargo-pgx/src/templates/cargo_toml @@ -16,11 +16,11 @@ pg14 = ["pgx/pg14", "pgx-tests/pg14" ] pg_test = [] [dependencies] -pgx = "0.3.0" -pgx-macros = "0.3.0" +pgx = "0.3.1" +pgx-macros = "0.3.1" [dev-dependencies] -pgx-tests = "0.3.0" +pgx-tests = "0.3.1" [profile.dev] panic = "unwind" diff --git a/nix/templates/default/Cargo.toml b/nix/templates/default/Cargo.toml index 25d833ea57..4c314e295e 100644 --- a/nix/templates/default/Cargo.toml +++ b/nix/templates/default/Cargo.toml @@ -16,13 +16,13 @@ pg14 = ["pgx/pg14", "pgx-tests/pg14" ] pg_test = [] [dependencies] -pgx = "0.3.0" -pgx-macros = "0.3.0" -pgx-utils = "0.3.0" +pgx = "0.3.1" +pgx-macros = "0.3.1" +pgx-utils = "0.3.1" [dev-dependencies] -pgx-tests = "0.3.0" +pgx-tests = "0.3.1" tempfile = "3.2.0" once_cell = "1.7.2" diff --git a/pgx-macros/Cargo.toml b/pgx-macros/Cargo.toml index 0919264ffd..02a13bf586 100644 --- a/pgx-macros/Cargo.toml +++ b/pgx-macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pgx-macros" -version = "0.3.0" +version = "0.3.1" authors = ["ZomboDB, LLC "] edition = "2018" license = "MIT" @@ -18,7 +18,7 @@ proc-macro = true rustc-args = ["--cfg", "docsrs"] [dependencies] -pgx-utils = { path = "../pgx-utils", version = "0.3.0" } +pgx-utils = { path = "../pgx-utils", version = "0.3.1" } proc-macro2 = "1.0.36" quote = "1.0.15" syn = { version = "1.0.86", features = [ "extra-traits", "full", "fold", "parsing" ] } diff --git a/pgx-pg-sys/Cargo.toml b/pgx-pg-sys/Cargo.toml index b16e333824..c9cc5beeed 100644 --- a/pgx-pg-sys/Cargo.toml +++ b/pgx-pg-sys/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pgx-pg-sys" -version = "0.3.0" +version = "0.3.1" authors = ["ZomboDB, LLC "] edition = "2018" license = "MIT" @@ -29,14 +29,14 @@ rustdoc-args = ["--cfg", "docsrs"] [dependencies] memoffset = "0.6.5" once_cell = "1.9.0" -pgx-macros = { path = "../pgx-macros/", version = "0.3.0" } +pgx-macros = { path = "../pgx-macros/", version = "0.3.1" } [build-dependencies] bindgen = "0.59.2" build-deps = "0.1.4" colored = "2.0.0" num_cpus = "1.13.1" -pgx-utils = { path = "../pgx-utils/", version = "0.3.0" } +pgx-utils = { path = "../pgx-utils/", version = "0.3.1" } proc-macro2 = "1.0.36" quote = "1.0.15" rayon = "1.5.1" diff --git a/pgx-tests/Cargo.toml b/pgx-tests/Cargo.toml index 342148a1ff..75509f74aa 100644 --- a/pgx-tests/Cargo.toml +++ b/pgx-tests/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pgx-tests" -version = "0.3.0" +version = "0.3.1" authors = ["ZomboDB, LLC "] edition = "2018" license = "MIT" @@ -30,9 +30,9 @@ no-default-features = true colored = "2.0.0" lazy_static = "1.4.0" libc = "0.2.117" -pgx = { path = "../pgx", default-features = false, version= "0.3.0" } -pgx-macros = { path = "../pgx-macros", version= "0.3.0" } -pgx-utils = { path = "../pgx-utils", version= "0.3.0" } +pgx = { path = "../pgx", default-features = false, version= "0.3.1" } +pgx-macros = { path = "../pgx-macros", version= "0.3.1" } +pgx-utils = { path = "../pgx-utils", version= "0.3.1" } postgres = "0.19.2" regex = "1.5.4" serde = "1.0.136" diff --git a/pgx-utils/Cargo.toml b/pgx-utils/Cargo.toml index f3b3b4f215..6564685f6b 100644 --- a/pgx-utils/Cargo.toml +++ b/pgx-utils/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pgx-utils" -version = "0.3.0" +version = "0.3.1" authors = ["ZomboDB, LLC "] edition = "2018" license = "MIT"