Skip to content

Commit

Permalink
prepare for a quick 0.5.1
Browse files Browse the repository at this point in the history
- merge in #763
- bump version numbers
  • Loading branch information
eeeebbbbrrrr authored Oct 14, 2022
2 parents b92c609 + 522c0e8 commit c25c605
Show file tree
Hide file tree
Showing 17 changed files with 1,144 additions and 3,106 deletions.
30 changes: 15 additions & 15 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 README.md
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ and `From<time::Type> for pgx::MatchingType` by enabling the `"time-crate"` feat

### Experimental Features

Adding `pgx = { version = "0.5.0", features = ["postgrestd"] }` to your Cargo.toml
Adding `pgx = { version = "0.5.1", features = ["postgrestd"] }` to your Cargo.toml
will enable a **highly** experimental variant of `pgx` designed for integration with `postgrestd`,
a modified Rust standard library that executes the Rust runtime atop the Postgres runtime,
instead of using the operating system's ordinary C runtime.
Expand All @@ -260,7 +260,7 @@ as that almost certainly means you are developing this feature,
and further extending both runtimes in ways neither initially had imagined.
If you absolutely must enable this feature, you may wish to discuss it first on [Discord].

Adding `pgx = { version = "0.5.0", features = ["plrust"] }` to your Cargo.toml
Adding `pgx = { version = "0.5.1", features = ["plrust"] }` to your Cargo.toml
will enable an even more experimental variant of the above with special carve-outs
specifically for usage with `PL/Rust`. This feature may not last long,
as it is likely that code may move into a separate crate.
Expand Down
6 changes: 3 additions & 3 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.5.0"
version = "0.5.1"
authors = ["ZomboDB, LLC <[email protected]>"]
license = "MIT"
description = "Cargo subcommand for 'pgx' to make Postgres extension development easy"
Expand All @@ -23,8 +23,8 @@ semver = "1.0.14"
owo-colors = { version = "3.5.0", features = [ "supports-colors" ] }
env_proxy = "0.4.1"
num_cpus = "1.13.1"
pgx-pg-config = { path = "../pgx-pg-config", version = "=0.5.0" }
pgx-utils = { path = "../pgx-utils", version = "=0.5.0" }
pgx-pg-config = { path = "../pgx-pg-config", version = "=0.5.1" }
pgx-utils = { path = "../pgx-utils", version = "=0.5.1" }
prettyplease = "0.1.20"
proc-macro2 = { version = "1.0.46", features = [ "span-locations" ] }
quote = "1.0.21"
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 @@ -16,10 +16,10 @@ pg14 = ["pgx/pg14", "pgx-tests/pg14" ]
pg_test = []

[dependencies]
pgx = "=0.5.0"
pgx = "=0.5.1"

[dev-dependencies]
pgx-tests = "=0.5.0"
pgx-tests = "=0.5.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.5.0"
pgx-macros = "=0.5.0"
pgx-utils = "=0.5.0"
pgx = "=0.5.1"
pgx-macros = "=0.5.1"
pgx-utils = "=0.5.1"


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

[dependencies]
pgx-utils = { path = "../pgx-utils", version = "=0.5.0" }
pgx-utils = { path = "../pgx-utils", version = "=0.5.1" }
proc-macro2 = "1.0.46"
quote = "1.0.21"
syn = { version = "1.0.102", features = [ "extra-traits", "full", "fold", "parsing" ] }
Expand Down
2 changes: 1 addition & 1 deletion pgx-pg-config/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pgx-pg-config"
version = "0.5.0"
version = "0.5.1"
authors = ["ZomboDB, LLC <[email protected]>"]
license = "MIT"
description = "A Postgres pg_config wrapper for 'pgx'"
Expand Down
10 changes: 5 additions & 5 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.5.0"
version = "0.5.1"
authors = ["ZomboDB, LLC <[email protected]>"]
license = "MIT"
description = "Generated Rust bindings for Postgres internals, for use with 'pgx'"
Expand Down Expand Up @@ -30,15 +30,15 @@ rustdoc-args = ["--cfg", "docsrs"]
[dependencies]
memoffset = "0.6.5"
once_cell = "1.15.0"
pgx-macros = { path = "../pgx-macros/", version = "=0.5.0" }
pgx-utils = { path = "../pgx-utils/", version = "=0.5.0" }
pgx-macros = { path = "../pgx-macros/", version = "=0.5.1" }
pgx-utils = { path = "../pgx-utils/", version = "=0.5.1" }
# polyfill until #![feature(strict_provenance)] stabilizes
sptr = "0.3"

[build-dependencies]
bindgen = { version = "0.60.1", default-features = false, features = ["runtime"] }
pgx-pg-config= { path = "../pgx-pg-config/", version = "=0.5.0" }
pgx-utils = { path = "../pgx-utils/", version = "=0.5.0" }
pgx-pg-config= { path = "../pgx-pg-config/", version = "=0.5.1" }
pgx-utils = { path = "../pgx-utils/", version = "=0.5.1" }
proc-macro2 = "1.0.46"
quote = "1.0.21"
rayon = "1.5.3"
Expand Down
Loading

0 comments on commit c25c605

Please sign in to comment.