From 98dd8690c688b83c095f2f15ee5fafc22c5b4ba2 Mon Sep 17 00:00:00 2001 From: "Eric B. Ridge" Date: Sun, 16 Aug 2020 10:31:46 -0600 Subject: [PATCH] bump version to v0.0.13 --- 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 c4d4ec46d5..af4c4b0f85 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pgx-parent" -version = "0.0.12" +version = "0.0.13" authors = ["ZomboDB, LLC "] edition = "2018" license = "MIT" diff --git a/cargo-pgx/Cargo.toml b/cargo-pgx/Cargo.toml index a12a9a8581..03b6551639 100644 --- a/cargo-pgx/Cargo.toml +++ b/cargo-pgx/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cargo-pgx" -version = "0.0.12" +version = "0.0.13" authors = ["ZomboDB, LLC "] edition = "2018" license = "MIT" @@ -15,7 +15,7 @@ clap = { version = "2.33.3", features = [ "yaml" ] } colored = "2.0.0" env_proxy = "0.4.1" num_cpus = "1.13.0" -pgx-utils = { path = "../pgx-utils", version = "^0.0.12"} +pgx-utils = { path = "../pgx-utils", version = "^0.0.13"} 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 a3eaed28be..78b8552b47 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.12" +version: "0.0.13" 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 358083ffa3..5ffd86251f 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.12" -pgx-macros = "0.0.12" +pgx = "0.0.13" +pgx-macros = "0.0.13" [dev-dependencies] -pgx-tests = "0.0.12" +pgx-tests = "0.0.13" [profile.dev] panic = "unwind" diff --git a/pgx-macros/Cargo.toml b/pgx-macros/Cargo.toml index 043f6dee9b..0f30ad55ff 100644 --- a/pgx-macros/Cargo.toml +++ b/pgx-macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pgx-macros" -version = "0.0.12" +version = "0.0.13" 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.12"} +pgx-utils = { path = "../pgx-utils", version= "^0.0.13"} 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 02f6983b26..60bedfc969 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.12" +version = "0.0.13" authors = ["ZomboDB, LLC "] edition = "2018" license = "MIT" @@ -23,14 +23,14 @@ targets = ["x86_64-unknown-linux-gnu"] [dependencies] memoffset = "0.5.5" -pgx-macros = { path = "../pgx-macros/", version= "^0.0.12"} +pgx-macros = { path = "../pgx-macros/", version= "^0.0.13"} [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.12"} +pgx-utils = { path = "../pgx-utils/", version= "^0.0.13"} 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 d016b64f16..0c0ecbf23b 100644 --- a/pgx-tests/Cargo.toml +++ b/pgx-tests/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pgx-tests" -version = "0.0.12" +version = "0.0.13" 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.12"} -pgx-macros = { path = "../pgx-macros", version= "^0.0.12"} -pgx-utils = { path = "../pgx-utils", version= "^0.0.12"} +pgx = { path = "../pgx", default-features = false, version= "^0.0.13"} +pgx-macros = { path = "../pgx-macros", version= "^0.0.13"} +pgx-utils = { path = "../pgx-utils", version= "^0.0.13"} postgres = "0.17.5" regex = "1.3.9" serde = "1.0.115" diff --git a/pgx-utils/Cargo.toml b/pgx-utils/Cargo.toml index 800aade54f..3a240aaeda 100644 --- a/pgx-utils/Cargo.toml +++ b/pgx-utils/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pgx-utils" -version = "0.0.12" +version = "0.0.13" authors = ["ZomboDB, LLC "] edition = "2018" license = "MIT" diff --git a/pgx/Cargo.toml b/pgx/Cargo.toml index e2e75e3d2e..47f3960ed4 100644 --- a/pgx/Cargo.toml +++ b/pgx/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pgx" -version = "0.0.12" +version = "0.0.13" 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.12"} -pgx-pg-sys = { path = "../pgx-pg-sys", version= "^0.0.12"} +pgx-macros = { path = "../pgx-macros/", version= "^0.0.13"} +pgx-pg-sys = { path = "../pgx-pg-sys", version= "^0.0.13"} serde = { version = "1.0.115", features = [ "derive" ] } serde_cbor = "0.11.1" serde_json = "1.0.57"