Skip to content

Commit b019d26

Browse files
committed
bump to v0.0.18
1 parent 9de5b15 commit b019d26

File tree

8 files changed

+19
-19
lines changed

8 files changed

+19
-19
lines changed

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-parent"
3-
version = "0.0.17"
3+
version = "0.0.18"
44
authors = ["ZomboDB, LLC <[email protected]>"]
55
edition = "2018"
66
license = "MIT"

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.0.17"
3+
version = "0.0.18"
44
authors = ["ZomboDB, LLC <[email protected]>"]
55
edition = "2018"
66
license = "MIT"
@@ -15,7 +15,7 @@ clap = { version = "2.33.3", features = [ "yaml" ] }
1515
colored = "2.0.0"
1616
env_proxy = "0.4.1"
1717
num_cpus = "1.13.0"
18-
pgx-utils = { path = "../pgx-utils", version = "^0.0.17"}
18+
pgx-utils = { path = "../pgx-utils", version = "^0.0.18"}
1919
proc-macro2 = { version = "1.0.24", features = [ "span-locations" ] }
2020
quote = "1.0.7"
2121
rayon = "1.5.0"

cargo-pgx/src/templates/cargo_toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,11 @@ pg12 = ["pgx/pg12"]
1414
pg_test = []
1515

1616
[dependencies]
17-
pgx = "0.0.17"
18-
pgx-macros = "0.0.17"
17+
pgx = "0.0.18"
18+
pgx-macros = "0.0.18"
1919

2020
[dev-dependencies]
21-
pgx-tests = "0.0.17"
21+
pgx-tests = "0.0.18"
2222

2323
[profile.dev]
2424
panic = "unwind"

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.0.17"
3+
version = "0.0.18"
44
authors = ["ZomboDB, LLC <[email protected]>"]
55
edition = "2018"
66
license = "MIT"
@@ -14,7 +14,7 @@ readme = "README.md"
1414
proc-macro = true
1515

1616
[dependencies]
17-
pgx-utils = { path = "../pgx-utils", version= "^0.0.17"}
17+
pgx-utils = { path = "../pgx-utils", version= "^0.0.18"}
1818
proc-macro2 = "1.0.24"
1919
quote = "1.0.7"
2020
syn = { version = "1.0.48", 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.0.17"
3+
version = "0.0.18"
44
authors = ["ZomboDB, LLC <[email protected]>"]
55
edition = "2018"
66
license = "MIT"
@@ -24,14 +24,14 @@ targets = ["x86_64-unknown-linux-gnu"]
2424
[dependencies]
2525
memoffset = "0.6.1"
2626
once_cell = "1.4.1"
27-
pgx-macros = { path = "../pgx-macros/", version= "^0.0.17"}
27+
pgx-macros = { path = "../pgx-macros/", version= "^0.0.18"}
2828

2929
[build-dependencies]
3030
bindgen = "0.55.1"
3131
build-deps = "0.1.4"
3232
colored = "2.0.0"
3333
num_cpus = "1.13.0"
34-
pgx-utils = { path = "../pgx-utils/", version= "^0.0.17"}
34+
pgx-utils = { path = "../pgx-utils/", version= "^0.0.18"}
3535
proc-macro2 = "1.0.24"
3636
quote = "1.0.7"
3737
syn = { version = "1.0.48", features = [ "extra-traits", "full", "fold", "parsing" ] }

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.0.17"
3+
version = "0.0.18"
44
authors = ["ZomboDB, LLC <[email protected]>"]
55
edition = "2018"
66
license = "MIT"
@@ -28,9 +28,9 @@ no-default-features = true
2828
colored = "2.0.0"
2929
lazy_static = "1.4.0"
3030
libc = "0.2.80"
31-
pgx = { path = "../pgx", default-features = false, version= "^0.0.17"}
32-
pgx-macros = { path = "../pgx-macros", version= "^0.0.17"}
33-
pgx-utils = { path = "../pgx-utils", version= "^0.0.17"}
31+
pgx = { path = "../pgx", default-features = false, version= "^0.0.18"}
32+
pgx-macros = { path = "../pgx-macros", version= "^0.0.18"}
33+
pgx-utils = { path = "../pgx-utils", version= "^0.0.18"}
3434
postgres = "0.18.1"
3535
regex = "1.4.2"
3636
serde = "1.0.117"

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.0.17"
3+
version = "0.0.18"
44
authors = ["ZomboDB, LLC <[email protected]>"]
55
edition = "2018"
66
license = "MIT"

pgx/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"
3-
version = "0.0.17"
3+
version = "0.0.18"
44
authors = ["ZomboDB, LLC <[email protected]>"]
55
edition = "2018"
66
license = "MIT"
@@ -27,8 +27,8 @@ no-default-features = true
2727
enum-primitive-derive = "0.2.1"
2828
num-traits = "0.2.14"
2929
seahash = "4.0.1"
30-
pgx-macros = { path = "../pgx-macros/", version= "^0.0.17"}
31-
pgx-pg-sys = { path = "../pgx-pg-sys", version= "^0.0.17"}
30+
pgx-macros = { path = "../pgx-macros/", version= "^0.0.18"}
31+
pgx-pg-sys = { path = "../pgx-pg-sys", version= "^0.0.18"}
3232
serde = { version = "1.0.117", features = [ "derive" ] }
3333
serde_cbor = "0.11.1"
3434
serde_json = "1.0.59"

0 commit comments

Comments
 (0)