From 2c10b91c4bc8dca790dd5e2b5284e7cfaf1744a1 Mon Sep 17 00:00:00 2001 From: "Eric B. Ridge" Date: Mon, 3 Aug 2020 11:08:26 -0600 Subject: [PATCH] bump versions to v0.0.9 --- Cargo.toml | 2 +- cargo-pgx/Cargo.toml | 4 ++-- cargo-pgx/src/cli.yml | 2 +- cargo-pgx/src/templates/cargo_toml | 6 +++--- pgx-macros/Cargo.toml | 4 ++-- pgx-pg-sys/Cargo.toml | 6 +++--- pgx-tests/Cargo.toml | 8 ++++---- pgx-utils/Cargo.toml | 2 +- pgx/Cargo.toml | 6 +++--- 9 files changed, 20 insertions(+), 20 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 4d3ada4f2..b52a2eb01 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pgx-parent" -version = "0.0.8" +version = "0.0.9" authors = ["ZomboDB, LLC "] edition = "2018" license = "MIT" diff --git a/cargo-pgx/Cargo.toml b/cargo-pgx/Cargo.toml index 085802521..225205dfd 100644 --- a/cargo-pgx/Cargo.toml +++ b/cargo-pgx/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cargo-pgx" -version = "0.0.8" +version = "0.0.9" authors = ["ZomboDB, LLC "] edition = "2018" license = "MIT" @@ -16,7 +16,7 @@ colored = "2.0.0" env_proxy = "0.4.1" exec = "0.3.1" num_cpus = "1.13.0" -pgx-utils = { path = "../pgx-utils", version = "^0.0.8"} +pgx-utils = { path = "../pgx-utils", version = "^0.0.9"} proc-macro2 = { version = "1.0.19", features = [ "span-locations" ] } quote = "1.0.7" rayon = "1.3.1" diff --git a/cargo-pgx/src/cli.yml b/cargo-pgx/src/cli.yml index 0d84ac85d..027b5b450 100644 --- a/cargo-pgx/src/cli.yml +++ b/cargo-pgx/src/cli.yml @@ -3,7 +3,7 @@ name: "pgx's development environment tool" -version: "0.0.8" +version: "0.0.9" about: Creates and installs pgx based Postgres extensions subcommands: - pgx: diff --git a/cargo-pgx/src/templates/cargo_toml b/cargo-pgx/src/templates/cargo_toml index 82f05f300..fbc562c59 100644 --- a/cargo-pgx/src/templates/cargo_toml +++ b/cargo-pgx/src/templates/cargo_toml @@ -14,11 +14,11 @@ pg12 = ["pgx/pg12"] pg_test = [] [dependencies] -pgx = "0.0.8" -pgx-macros = "0.0.8" +pgx = "0.0.9" +pgx-macros = "0.0.9" [dev-dependencies] -pgx-tests = "0.0.8" +pgx-tests = "0.0.9" [profile.dev] panic = "unwind" diff --git a/pgx-macros/Cargo.toml b/pgx-macros/Cargo.toml index d4b8f7e23..e10f347a0 100644 --- a/pgx-macros/Cargo.toml +++ b/pgx-macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pgx-macros" -version = "0.0.8" +version = "0.0.9" authors = ["ZomboDB, LLC "] edition = "2018" license = "MIT" @@ -14,7 +14,7 @@ readme = "README.md" proc-macro = true [dependencies] -pgx-utils = { path = "../pgx-utils", version= "^0.0.8"} +pgx-utils = { path = "../pgx-utils", version= "^0.0.9"} proc-macro2 = "1.0.19" quote = "1.0.7" regex = "1.3.9" diff --git a/pgx-pg-sys/Cargo.toml b/pgx-pg-sys/Cargo.toml index 8a0748fd0..51b7a4309 100644 --- a/pgx-pg-sys/Cargo.toml +++ b/pgx-pg-sys/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pgx-pg-sys" -version = "0.0.8" +version = "0.0.9" authors = ["ZomboDB, LLC "] edition = "2018" license = "MIT" @@ -22,14 +22,14 @@ no-default-features = true [dependencies] memoffset = "0.5.5" -pgx-macros = { path = "../pgx-macros/", version= "^0.0.8"} +pgx-macros = { path = "../pgx-macros/", version= "^0.0.9"} [build-dependencies] bindgen = "=0.54.0" build-deps = "0.1.4" colored = "2.0.0" num_cpus = "1.13.0" -pgx-utils = { path = "../pgx-utils/", version= "^0.0.8"} +pgx-utils = { path = "../pgx-utils/", version= "^0.0.9"} proc-macro2 = "1.0.19" quote = "1.0.7" rayon = "1.3.1" diff --git a/pgx-tests/Cargo.toml b/pgx-tests/Cargo.toml index aa29b9609..a836a4714 100644 --- a/pgx-tests/Cargo.toml +++ b/pgx-tests/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pgx-tests" -version = "0.0.8" +version = "0.0.9" authors = ["ZomboDB, LLC "] edition = "2018" license = "MIT" @@ -28,9 +28,9 @@ no-default-features = true colored = "2.0.0" lazy_static = "1.4.0" libc = "0.2.74" -pgx = { path = "../pgx", default-features = false, version= "^0.0.8"} -pgx-macros = { path = "../pgx-macros", version= "^0.0.8"} -pgx-utils = { path = "../pgx-utils", version= "^0.0.8"} +pgx = { path = "../pgx", default-features = false, version= "^0.0.9"} +pgx-macros = { path = "../pgx-macros", version= "^0.0.9"} +pgx-utils = { path = "../pgx-utils", version= "^0.0.9"} postgres = "0.17.5" regex = "1.3.9" serde = "1.0.114" diff --git a/pgx-utils/Cargo.toml b/pgx-utils/Cargo.toml index fd2f0393f..425e8ef00 100644 --- a/pgx-utils/Cargo.toml +++ b/pgx-utils/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pgx-utils" -version = "0.0.8" +version = "0.0.9" authors = ["ZomboDB, LLC "] edition = "2018" license = "MIT" diff --git a/pgx/Cargo.toml b/pgx/Cargo.toml index 9e2fc6bc9..ef0d5db79 100644 --- a/pgx/Cargo.toml +++ b/pgx/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pgx" -version = "0.0.8" +version = "0.0.9" authors = ["ZomboDB, LLC "] edition = "2018" license = "MIT" @@ -27,8 +27,8 @@ no-default-features = true enum-primitive-derive = "0.2.1" lazy_static = "1.4.0" num-traits = "0.2.12" -pgx-macros = { path = "../pgx-macros/", version= "^0.0.8"} -pgx-pg-sys = { path = "../pgx-pg-sys", version= "^0.0.8"} +pgx-macros = { path = "../pgx-macros/", version= "^0.0.9"} +pgx-pg-sys = { path = "../pgx-pg-sys", version= "^0.0.9"} serde = { version = "1.0.114", features = [ "derive" ] } serde_cbor = "0.11.1" serde_json = "1.0.57"