Skip to content

Commit 30b7a87

Browse files
authored
Release 0.3.2 (#442)
Signed-off-by: Ana Hobden <[email protected]>
1 parent d55c5d1 commit 30b7a87

File tree

10 files changed

+53
-62
lines changed

10 files changed

+53
-62
lines changed

Cargo.lock

Lines changed: 24 additions & 33 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "pgx-parent"
3-
version = "0.3.1"
3+
version = "0.3.2"
44
authors = ["ZomboDB, LLC <[email protected]>"]
55
edition = "2018"
66
license = "MIT"
@@ -52,8 +52,8 @@ no-default-features = true
5252
rustc-args = ["--cfg", "docsrs"]
5353

5454
[dependencies]
55-
cargo-pgx = { path = "cargo-pgx", version = "0.3.1" }
56-
pgx = { path = "pgx", version = "0.3.1", default-features = false }
57-
pgx-macros = { path = "pgx-macros", version = "0.3.1" }
58-
pgx-pg-sys = { path = "pgx-pg-sys", version = "0.3.1", default-features = false }
59-
pgx-tests = { path = "pgx-tests", version = "0.3.1", default-features = false }
55+
cargo-pgx = { path = "cargo-pgx", version = "0.3.2" }
56+
pgx = { path = "pgx", version = "0.3.2", default-features = false }
57+
pgx-macros = { path = "pgx-macros", version = "0.3.2" }
58+
pgx-pg-sys = { path = "pgx-pg-sys", version = "0.3.2", default-features = false }
59+
pgx-tests = { path = "pgx-tests", version = "0.3.2", default-features = false }

cargo-pgx/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cargo-pgx"
3-
version = "0.3.1"
3+
version = "0.3.2"
44
authors = ["ZomboDB, LLC <[email protected]>"]
55
edition = "2018"
66
license = "MIT"
@@ -22,7 +22,7 @@ semver = "1.0.5"
2222
colored = "2.0.0"
2323
env_proxy = "0.4.1"
2424
num_cpus = "1.13.1"
25-
pgx-utils = { path = "../pgx-utils", version = "0.3.1" }
25+
pgx-utils = { path = "../pgx-utils", version = "0.3.2" }
2626
proc-macro2 = { version = "1.0.36", features = [ "span-locations" ] }
2727
quote = "1.0.15"
2828
rayon = "1.5.1"

cargo-pgx/src/templates/cargo_toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,11 @@ pg14 = ["pgx/pg14", "pgx-tests/pg14" ]
1616
pg_test = []
1717

1818
[dependencies]
19-
pgx = "0.3.1"
20-
pgx-macros = "0.3.1"
19+
pgx = "0.3.2"
20+
pgx-macros = "0.3.2"
2121

2222
[dev-dependencies]
23-
pgx-tests = "0.3.1"
23+
pgx-tests = "0.3.2"
2424

2525
[profile.dev]
2626
panic = "unwind"

nix/templates/default/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,13 @@ pg14 = ["pgx/pg14", "pgx-tests/pg14" ]
1616
pg_test = []
1717

1818
[dependencies]
19-
pgx = "0.3.1"
20-
pgx-macros = "0.3.1"
21-
pgx-utils = "0.3.1"
19+
pgx = "0.3.2"
20+
pgx-macros = "0.3.2"
21+
pgx-utils = "0.3.2"
2222

2323

2424
[dev-dependencies]
25-
pgx-tests = "0.3.1"
25+
pgx-tests = "0.3.2"
2626
tempfile = "3.2.0"
2727
once_cell = "1.7.2"
2828

pgx-macros/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "pgx-macros"
3-
version = "0.3.1"
3+
version = "0.3.2"
44
authors = ["ZomboDB, LLC <[email protected]>"]
55
edition = "2018"
66
license = "MIT"
@@ -18,7 +18,7 @@ proc-macro = true
1818
rustc-args = ["--cfg", "docsrs"]
1919

2020
[dependencies]
21-
pgx-utils = { path = "../pgx-utils", version = "0.3.1" }
21+
pgx-utils = { path = "../pgx-utils", version = "0.3.2" }
2222
proc-macro2 = "1.0.36"
2323
quote = "1.0.15"
2424
syn = { version = "1.0.86", features = [ "extra-traits", "full", "fold", "parsing" ] }

pgx-pg-sys/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "pgx-pg-sys"
3-
version = "0.3.1"
3+
version = "0.3.2"
44
authors = ["ZomboDB, LLC <[email protected]>"]
55
edition = "2018"
66
license = "MIT"
@@ -29,14 +29,14 @@ rustdoc-args = ["--cfg", "docsrs"]
2929
[dependencies]
3030
memoffset = "0.6.5"
3131
once_cell = "1.9.0"
32-
pgx-macros = { path = "../pgx-macros/", version = "0.3.1" }
32+
pgx-macros = { path = "../pgx-macros/", version = "0.3.2" }
3333

3434
[build-dependencies]
3535
bindgen = "0.59.2"
3636
build-deps = "0.1.4"
3737
colored = "2.0.0"
3838
num_cpus = "1.13.1"
39-
pgx-utils = { path = "../pgx-utils/", version = "0.3.1" }
39+
pgx-utils = { path = "../pgx-utils/", version = "0.3.2" }
4040
proc-macro2 = "1.0.36"
4141
quote = "1.0.15"
4242
rayon = "1.5.1"

pgx-tests/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "pgx-tests"
3-
version = "0.3.1"
3+
version = "0.3.2"
44
authors = ["ZomboDB, LLC <[email protected]>"]
55
edition = "2018"
66
license = "MIT"
@@ -30,9 +30,9 @@ no-default-features = true
3030
colored = "2.0.0"
3131
lazy_static = "1.4.0"
3232
libc = "0.2.117"
33-
pgx = { path = "../pgx", default-features = false, version= "0.3.1" }
34-
pgx-macros = { path = "../pgx-macros", version= "0.3.1" }
35-
pgx-utils = { path = "../pgx-utils", version= "0.3.1" }
33+
pgx = { path = "../pgx", default-features = false, version= "0.3.2" }
34+
pgx-macros = { path = "../pgx-macros", version= "0.3.2" }
35+
pgx-utils = { path = "../pgx-utils", version= "0.3.2" }
3636
postgres = "0.19.2"
3737
regex = "1.5.4"
3838
serde = "1.0.136"

pgx-utils/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "pgx-utils"
3-
version = "0.3.1"
3+
version = "0.3.2"
44
authors = ["ZomboDB, LLC <[email protected]>"]
55
edition = "2018"
66
license = "MIT"

pgx/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "pgx"
3-
version = "0.3.1"
3+
version = "0.3.2"
44
authors = ["ZomboDB, LLC <[email protected]>"]
55
edition = "2018"
66
license = "MIT"
@@ -34,9 +34,9 @@ cstr_core = "0.2.5"
3434
enum-primitive-derive = "0.2.2"
3535
num-traits = "0.2.14"
3636
seahash = "4.1.0"
37-
pgx-macros = { path = "../pgx-macros/", version = "0.3.1" }
38-
pgx-pg-sys = { path = "../pgx-pg-sys", version = "0.3.1" }
39-
pgx-utils = { path = "../pgx-utils/", version = "0.3.1" }
37+
pgx-macros = { path = "../pgx-macros/", version = "0.3.2" }
38+
pgx-pg-sys = { path = "../pgx-pg-sys", version = "0.3.2" }
39+
pgx-utils = { path = "../pgx-utils/", version = "0.3.2" }
4040
serde = { version = "1.0.136", features = [ "derive" ] }
4141
serde_cbor = "0.11.2"
4242
serde_json = "1.0.78"

0 commit comments

Comments
 (0)