Skip to content

Commit

Permalink
Release 0.3.1
Browse files Browse the repository at this point in the history
Signed-off-by: Ana Hobden <[email protected]>
  • Loading branch information
Hoverbear committed Feb 11, 2022
1 parent 5928a18 commit bdc426c
Show file tree
Hide file tree
Showing 7 changed files with 19 additions and 19 deletions.
4 changes: 2 additions & 2 deletions cargo-pgx/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cargo-pgx"
version = "0.3.0"
version = "0.3.1"
authors = ["ZomboDB, LLC <[email protected]>"]
edition = "2018"
license = "MIT"
Expand All @@ -22,7 +22,7 @@ semver = "1.0.5"
colored = "2.0.0"
env_proxy = "0.4.1"
num_cpus = "1.13.1"
pgx-utils = { path = "../pgx-utils", version = "0.3.0" }
pgx-utils = { path = "../pgx-utils", version = "0.3.1" }
proc-macro2 = { version = "1.0.36", features = [ "span-locations" ] }
quote = "1.0.15"
rayon = "1.5.1"
Expand Down
6 changes: 3 additions & 3 deletions cargo-pgx/src/templates/cargo_toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@ pg14 = ["pgx/pg14", "pgx-tests/pg14" ]
pg_test = []

[dependencies]
pgx = "0.3.0"
pgx-macros = "0.3.0"
pgx = "0.3.1"
pgx-macros = "0.3.1"

[dev-dependencies]
pgx-tests = "0.3.0"
pgx-tests = "0.3.1"

[profile.dev]
panic = "unwind"
Expand Down
8 changes: 4 additions & 4 deletions nix/templates/default/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@ pg14 = ["pgx/pg14", "pgx-tests/pg14" ]
pg_test = []

[dependencies]
pgx = "0.3.0"
pgx-macros = "0.3.0"
pgx-utils = "0.3.0"
pgx = "0.3.1"
pgx-macros = "0.3.1"
pgx-utils = "0.3.1"


[dev-dependencies]
pgx-tests = "0.3.0"
pgx-tests = "0.3.1"
tempfile = "3.2.0"
once_cell = "1.7.2"

Expand Down
4 changes: 2 additions & 2 deletions pgx-macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pgx-macros"
version = "0.3.0"
version = "0.3.1"
authors = ["ZomboDB, LLC <[email protected]>"]
edition = "2018"
license = "MIT"
Expand All @@ -18,7 +18,7 @@ proc-macro = true
rustc-args = ["--cfg", "docsrs"]

[dependencies]
pgx-utils = { path = "../pgx-utils", version = "0.3.0" }
pgx-utils = { path = "../pgx-utils", version = "0.3.1" }
proc-macro2 = "1.0.36"
quote = "1.0.15"
syn = { version = "1.0.86", features = [ "extra-traits", "full", "fold", "parsing" ] }
Expand Down
6 changes: 3 additions & 3 deletions pgx-pg-sys/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pgx-pg-sys"
version = "0.3.0"
version = "0.3.1"
authors = ["ZomboDB, LLC <[email protected]>"]
edition = "2018"
license = "MIT"
Expand Down Expand Up @@ -29,14 +29,14 @@ rustdoc-args = ["--cfg", "docsrs"]
[dependencies]
memoffset = "0.6.5"
once_cell = "1.9.0"
pgx-macros = { path = "../pgx-macros/", version = "0.3.0" }
pgx-macros = { path = "../pgx-macros/", version = "0.3.1" }

[build-dependencies]
bindgen = "0.59.2"
build-deps = "0.1.4"
colored = "2.0.0"
num_cpus = "1.13.1"
pgx-utils = { path = "../pgx-utils/", version = "0.3.0" }
pgx-utils = { path = "../pgx-utils/", version = "0.3.1" }
proc-macro2 = "1.0.36"
quote = "1.0.15"
rayon = "1.5.1"
Expand Down
8 changes: 4 additions & 4 deletions pgx-tests/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pgx-tests"
version = "0.3.0"
version = "0.3.1"
authors = ["ZomboDB, LLC <[email protected]>"]
edition = "2018"
license = "MIT"
Expand Down Expand Up @@ -30,9 +30,9 @@ no-default-features = true
colored = "2.0.0"
lazy_static = "1.4.0"
libc = "0.2.117"
pgx = { path = "../pgx", default-features = false, version= "0.3.0" }
pgx-macros = { path = "../pgx-macros", version= "0.3.0" }
pgx-utils = { path = "../pgx-utils", version= "0.3.0" }
pgx = { path = "../pgx", default-features = false, version= "0.3.1" }
pgx-macros = { path = "../pgx-macros", version= "0.3.1" }
pgx-utils = { path = "../pgx-utils", version= "0.3.1" }
postgres = "0.19.2"
regex = "1.5.4"
serde = "1.0.136"
Expand Down
2 changes: 1 addition & 1 deletion pgx-utils/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pgx-utils"
version = "0.3.0"
version = "0.3.1"
authors = ["ZomboDB, LLC <[email protected]>"]
edition = "2018"
license = "MIT"
Expand Down

0 comments on commit bdc426c

Please sign in to comment.