Skip to content

Commit 2c10b91

Browse files
committed
bump versions to v0.0.9
1 parent 8ac112a commit 2c10b91

File tree

9 files changed

+20
-20
lines changed

9 files changed

+20
-20
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.8"
3+
version = "0.0.9"
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.8"
3+
version = "0.0.9"
44
authors = ["ZomboDB, LLC <[email protected]>"]
55
edition = "2018"
66
license = "MIT"
@@ -16,7 +16,7 @@ colored = "2.0.0"
1616
env_proxy = "0.4.1"
1717
exec = "0.3.1"
1818
num_cpus = "1.13.0"
19-
pgx-utils = { path = "../pgx-utils", version = "^0.0.8"}
19+
pgx-utils = { path = "../pgx-utils", version = "^0.0.9"}
2020
proc-macro2 = { version = "1.0.19", features = [ "span-locations" ] }
2121
quote = "1.0.7"
2222
rayon = "1.3.1"

cargo-pgx/src/cli.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44

55
name: "pgx's development environment tool"
6-
version: "0.0.8"
6+
version: "0.0.9"
77
about: Creates and installs pgx based Postgres extensions
88
subcommands:
99
- pgx:

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.8"
18-
pgx-macros = "0.0.8"
17+
pgx = "0.0.9"
18+
pgx-macros = "0.0.9"
1919

2020
[dev-dependencies]
21-
pgx-tests = "0.0.8"
21+
pgx-tests = "0.0.9"
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.8"
3+
version = "0.0.9"
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.8"}
17+
pgx-utils = { path = "../pgx-utils", version= "^0.0.9"}
1818
proc-macro2 = "1.0.19"
1919
quote = "1.0.7"
2020
regex = "1.3.9"

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.8"
3+
version = "0.0.9"
44
authors = ["ZomboDB, LLC <[email protected]>"]
55
edition = "2018"
66
license = "MIT"
@@ -22,14 +22,14 @@ no-default-features = true
2222

2323
[dependencies]
2424
memoffset = "0.5.5"
25-
pgx-macros = { path = "../pgx-macros/", version= "^0.0.8"}
25+
pgx-macros = { path = "../pgx-macros/", version= "^0.0.9"}
2626

2727
[build-dependencies]
2828
bindgen = "=0.54.0"
2929
build-deps = "0.1.4"
3030
colored = "2.0.0"
3131
num_cpus = "1.13.0"
32-
pgx-utils = { path = "../pgx-utils/", version= "^0.0.8"}
32+
pgx-utils = { path = "../pgx-utils/", version= "^0.0.9"}
3333
proc-macro2 = "1.0.19"
3434
quote = "1.0.7"
3535
rayon = "1.3.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.0.8"
3+
version = "0.0.9"
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.74"
31-
pgx = { path = "../pgx", default-features = false, version= "^0.0.8"}
32-
pgx-macros = { path = "../pgx-macros", version= "^0.0.8"}
33-
pgx-utils = { path = "../pgx-utils", version= "^0.0.8"}
31+
pgx = { path = "../pgx", default-features = false, version= "^0.0.9"}
32+
pgx-macros = { path = "../pgx-macros", version= "^0.0.9"}
33+
pgx-utils = { path = "../pgx-utils", version= "^0.0.9"}
3434
postgres = "0.17.5"
3535
regex = "1.3.9"
3636
serde = "1.0.114"

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.8"
3+
version = "0.0.9"
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.8"
3+
version = "0.0.9"
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
lazy_static = "1.4.0"
2929
num-traits = "0.2.12"
30-
pgx-macros = { path = "../pgx-macros/", version= "^0.0.8"}
31-
pgx-pg-sys = { path = "../pgx-pg-sys", version= "^0.0.8"}
30+
pgx-macros = { path = "../pgx-macros/", version= "^0.0.9"}
31+
pgx-pg-sys = { path = "../pgx-pg-sys", version= "^0.0.9"}
3232
serde = { version = "1.0.114", features = [ "derive" ] }
3333
serde_cbor = "0.11.1"
3434
serde_json = "1.0.57"

0 commit comments

Comments
 (0)