-
-
Notifications
You must be signed in to change notification settings - Fork 257
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This cuts pgx 0.5.3, which is mostly a bugfix release that covers a handful of errors that had crept in to the end of the 0.5.0 test and release cycle.
- Loading branch information
Showing
53 changed files
with
121,452 additions
and
62,384 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
[target.'cfg(target_os="macos")'] | ||
# Postgres symbols won't be available until runtime | ||
rustflags = ["-Clink-arg=-Wl,-undefined,dynamic_lookup"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "cargo-pgx" | ||
version = "0.5.2" | ||
version = "0.5.3" | ||
authors = ["ZomboDB, LLC <[email protected]>"] | ||
license = "MIT" | ||
description = "Cargo subcommand for 'pgx' to make Postgres extension development easy" | ||
|
@@ -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.2" } | ||
pgx-utils = { path = "../pgx-utils", version = "=0.5.2" } | ||
pgx-pg-config = { path = "../pgx-pg-config", version = "=0.5.3" } | ||
pgx-utils = { path = "../pgx-utils", version = "=0.5.3", features = ["syntax-highlighting"] } | ||
prettyplease = "0.1.21" | ||
proc-macro2 = { version = "1.0.47", features = [ "span-locations" ] } | ||
quote = "1.0.21" | ||
|
Oops, something went wrong.