Skip to content

Commit

Permalink
Bump for v0.5.0-beta.0 (#583)
Browse files Browse the repository at this point in the history
* Bump for v0.5.0-rc.1

* ^H^H^H^Hbeta.0
  • Loading branch information
workingjubilee committed Jun 1, 2022
1 parent 922147d commit 7b62c9c
Show file tree
Hide file tree
Showing 14 changed files with 445 additions and 232 deletions.
91 changes: 52 additions & 39 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

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.4.5"
version = "0.5.0-beta.0"
authors = ["ZomboDB, LLC <[email protected]>"]
license = "MIT"
description = "Cargo subcommand for 'pgx' to make Postgres extension development easy"
Expand All @@ -24,7 +24,7 @@ semver = "1.0.9"
owo-colors = { version = "3.4.0", features = [ "supports-colors" ] }
env_proxy = "0.4.1"
num_cpus = "1.13.1"
pgx-utils = { path = "../pgx-utils", version = "=0.4.5" }
pgx-utils = { path = "../pgx-utils", version = "=0.5.0-beta.0" }
proc-macro2 = { version = "1.0.39", features = [ "span-locations" ] }
quote = "1.0.18"
rayon = "1.5.3"
Expand Down
4 changes: 2 additions & 2 deletions cargo-pgx/src/templates/cargo_toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ pg14 = ["pgx/pg14", "pgx-tests/pg14" ]
pg_test = []

[dependencies]
pgx = "=0.4.5"
pgx = "=0.5.0-beta.0"

[dev-dependencies]
pgx-tests = "=0.4.5"
pgx-tests = "=0.5.0-beta.0"

[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 @@ -17,13 +17,13 @@ pg14 = ["pgx/pg14", "pgx-tests/pg14" ]
pg_test = []

[dependencies]
pgx = "=0.4.5"
pgx-macros = "=0.4.5"
pgx-utils = "=0.4.5"
pgx = "=0.5.0-beta.0"
pgx-macros = "=0.5.0-beta.0"
pgx-utils = "=0.5.0-beta.0"


[dev-dependencies]
pgx-tests = "=0.4.5"
pgx-tests = "=0.5.0-beta.0"
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.4.5"
version = "0.5.0-beta.0"
authors = ["ZomboDB, LLC <[email protected]>"]
license = "MIT"
description = "Proc Macros for 'pgx'"
Expand All @@ -19,7 +19,7 @@ proc-macro = true
rustc-args = ["--cfg", "docsrs"]

[dependencies]
pgx-utils = { path = "../pgx-utils", version = "=0.4.5" }
pgx-utils = { path = "../pgx-utils", version = "=0.5.0-beta.0" }
proc-macro2 = "1.0.39"
quote = "1.0.18"
syn = { version = "1.0.95", 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.4.5"
version = "0.5.0-beta.0"
authors = ["ZomboDB, LLC <[email protected]>"]
license = "MIT"
description = "Generated Rust bindings for Postgres internals, for use with 'pgx'"
Expand Down Expand Up @@ -30,7 +30,7 @@ rustdoc-args = ["--cfg", "docsrs"]
[dependencies]
memoffset = "0.6.5"
once_cell = "1.10.0"
pgx-macros = { path = "../pgx-macros/", version = "=0.4.5" }
pgx-macros = { path = "../pgx-macros/", version = "=0.5.0-beta.0" }
# polyfill until #![feature(strict_provenance)] stabilizes
sptr = "0.3"

Expand All @@ -39,7 +39,7 @@ bindgen = { version = "0.59.2", default-features = false, features = ["runtime"]
build-deps = "0.1.4"
owo-colors = "3.4.0"
num_cpus = "1.13.1"
pgx-utils = { path = "../pgx-utils/", version = "=0.4.5" }
pgx-utils = { path = "../pgx-utils/", version = "=0.5.0-beta.0" }
proc-macro2 = "1.0.39"
quote = "1.0.18"
rayon = "1.5.3"
Expand Down
Loading

0 comments on commit 7b62c9c

Please sign in to comment.