-
-
Notifications
You must be signed in to change notification settings - Fork 255
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Welcome to pgrx v0.12.3. This point release upgrades to use the new Postgres 17rc1. As usual, please `cargo install cargo-pgrx --version 0.12.3 --locked`. Then you can run `cargo pgrx upgrade` in your extension crate's root to update its dependencies. ## What's Changed * Fixups of issues left from #1837 by @YohDeadfall in #1843 * move to Postgres v17rc1 by @eeeebbbbrrrr in #1846 **Full Changelog**: v0.12.2...v0.12.3
- Loading branch information
1 parent
c6d7020
commit 46c9abe
Showing
12 changed files
with
40 additions
and
49 deletions.
There are no files selected for viewing
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 |
---|---|---|
|
@@ -10,7 +10,7 @@ | |
|
||
[package] | ||
name = "cargo-pgrx" | ||
version = "0.12.2" | ||
version = "0.12.3" | ||
authors = ["PgCentral Foundation, Inc. <[email protected]>"] | ||
license = "MIT" | ||
description = "Cargo subcommand for 'pgrx' to make Postgres extension development easy" | ||
|
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
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 |
---|---|---|
|
@@ -10,7 +10,7 @@ | |
|
||
[package] | ||
name = "pgrx-macros" | ||
version = "0.12.2" | ||
version = "0.12.3" | ||
authors = ["PgCentral Foundation, Inc. <[email protected]>"] | ||
license = "MIT" | ||
description = "Proc Macros for 'pgrx'" | ||
|
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 |
---|---|---|
|
@@ -10,7 +10,7 @@ | |
|
||
[package] | ||
name = "pgrx-pg-config" | ||
version = "0.12.2" | ||
version = "0.12.3" | ||
authors = ["PgCentral Foundation, Inc. <[email protected]>"] | ||
license = "MIT" | ||
description = "A Postgres pg_config wrapper for 'pgrx'" | ||
|
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 |
---|---|---|
|
@@ -10,7 +10,7 @@ | |
|
||
[package] | ||
name = "pgrx-pg-sys" | ||
version = "0.12.2" | ||
version = "0.12.3" | ||
authors = ["PgCentral Foundation, Inc. <[email protected]>"] | ||
license = "MIT" | ||
description = "Generated Rust bindings for Postgres internals, for use with 'pgrx'" | ||
|
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 |
---|---|---|
|
@@ -10,7 +10,7 @@ | |
|
||
[package] | ||
name = "pgrx-sql-entity-graph" | ||
version = "0.12.2" | ||
version = "0.12.3" | ||
authors = ["PgCentral Foundation, Inc. <[email protected]>"] | ||
license = "MIT" | ||
description = "Sql Entity Graph for `pgrx`" | ||
|
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 |
---|---|---|
|
@@ -10,7 +10,7 @@ | |
|
||
[package] | ||
name = "pgrx-tests" | ||
version = "0.12.2" | ||
version = "0.12.3" | ||
authors = ["PgCentral Foundation, Inc. <[email protected]>"] | ||
license = "MIT" | ||
description = "Test framework for 'pgrx'-based Postgres extensions" | ||
|
@@ -72,7 +72,7 @@ rand = "0.8.5" | |
[dependencies.pgrx] # Not unified in workspace due to default-features key | ||
path = "../pgrx" | ||
default-features = false | ||
version = "=0.12.2" | ||
version = "=0.12.3" | ||
|
||
[dev-dependencies] | ||
eyre.workspace = true # testing functions that return `eyre::Result` | ||
|
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 |
---|---|---|
|
@@ -10,7 +10,7 @@ | |
|
||
[package] | ||
name = "pgrx" | ||
version = "0.12.2" | ||
version = "0.12.3" | ||
authors = ["PgCentral Foundation, Inc. <[email protected]>"] | ||
license = "MIT" | ||
description = "pgrx: A Rust framework for creating Postgres extensions" | ||
|