diff --git a/Cargo.lock b/Cargo.lock index 3a2e99f3a..b66492820 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -308,7 +308,7 @@ dependencies = [ [[package]] name = "cargo-pgrx" -version = "0.12.0" +version = "0.12.1" dependencies = [ "bzip2", "cargo-edit", @@ -1484,7 +1484,7 @@ dependencies = [ [[package]] name = "pgrx" -version = "0.12.0" +version = "0.12.1" dependencies = [ "atomic-traits", "bitflags 2.4.2", @@ -1506,7 +1506,7 @@ dependencies = [ [[package]] name = "pgrx-bindgen" -version = "0.12.0" +version = "0.12.1" dependencies = [ "bindgen", "clang-sys", @@ -1521,7 +1521,7 @@ dependencies = [ [[package]] name = "pgrx-macros" -version = "0.12.0" +version = "0.12.1" dependencies = [ "pgrx-sql-entity-graph", "proc-macro2", @@ -1532,7 +1532,7 @@ dependencies = [ [[package]] name = "pgrx-pg-config" -version = "0.12.0" +version = "0.12.1" dependencies = [ "cargo_toml", "eyre", @@ -1548,7 +1548,7 @@ dependencies = [ [[package]] name = "pgrx-pg-sys" -version = "0.12.0" +version = "0.12.1" dependencies = [ "cee-scape", "libc", @@ -1561,7 +1561,7 @@ dependencies = [ [[package]] name = "pgrx-sql-entity-graph" -version = "0.12.0" +version = "0.12.1" dependencies = [ "convert_case", "eyre", @@ -1577,7 +1577,7 @@ dependencies = [ [[package]] name = "pgrx-tests" -version = "0.12.0" +version = "0.12.1" dependencies = [ "clap-cargo 0.14.0", "eyre", diff --git a/Cargo.toml b/Cargo.toml index ce3e6c064..704ee09aa 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -54,11 +54,11 @@ exclude = [ cargo-pgrx = { path = "cargo-pgrx" } [workspace.dependencies] -pgrx-macros = { path = "./pgrx-macros", version = "=0.12.0" } -pgrx-pg-sys = { path = "./pgrx-pg-sys", version = "=0.12.0" } -pgrx-sql-entity-graph = { path = "./pgrx-sql-entity-graph", version = "=0.12.0" } -pgrx-pg-config = { path = "./pgrx-pg-config", version = "=0.12.0" } -pgrx-bindgen = { path = "./pgrx-bindgen", version = "0.12.0" } +pgrx-macros = { path = "./pgrx-macros", version = "=0.12.1" } +pgrx-pg-sys = { path = "./pgrx-pg-sys", version = "=0.12.1" } +pgrx-sql-entity-graph = { path = "./pgrx-sql-entity-graph", version = "=0.12.1" } +pgrx-pg-config = { path = "./pgrx-pg-config", version = "=0.12.1" } +pgrx-bindgen = { path = "./pgrx-bindgen", version = "0.12.1" } cargo_metadata = "0.18.0" cargo-edit = "0.12.2" # format-preserving edits to cargo.toml diff --git a/cargo-pgrx/Cargo.toml b/cargo-pgrx/Cargo.toml index 349c6af26..240734d68 100644 --- a/cargo-pgrx/Cargo.toml +++ b/cargo-pgrx/Cargo.toml @@ -10,7 +10,7 @@ [package] name = "cargo-pgrx" -version = "0.12.0" +version = "0.12.1" authors = ["PgCentral Foundation, Inc. "] license = "MIT" description = "Cargo subcommand for 'pgrx' to make Postgres extension development easy" diff --git a/cargo-pgrx/src/templates/cargo_toml b/cargo-pgrx/src/templates/cargo_toml index 094dbe5eb..63e1fe4db 100644 --- a/cargo-pgrx/src/templates/cargo_toml +++ b/cargo-pgrx/src/templates/cargo_toml @@ -21,10 +21,10 @@ pg17 = ["pgrx/pg17", "pgrx-tests/pg17" ] pg_test = [] [dependencies] -pgrx = "=0.12.0" +pgrx = "=0.12.1" [dev-dependencies] -pgrx-tests = "=0.12.0" +pgrx-tests = "=0.12.1" [profile.dev] panic = "unwind" diff --git a/pgrx-bindgen/Cargo.toml b/pgrx-bindgen/Cargo.toml index 7ce63cd4f..5751c9068 100644 --- a/pgrx-bindgen/Cargo.toml +++ b/pgrx-bindgen/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "pgrx-bindgen" description = "additional bindgen support for pgrx" -version = "0.12.0" +version = "0.12.1" edition = "2021" license = "MIT" homepage = "https://github.com/pgcentralfoundation/pgrx" diff --git a/pgrx-macros/Cargo.toml b/pgrx-macros/Cargo.toml index ac3173b85..0d382c8cd 100644 --- a/pgrx-macros/Cargo.toml +++ b/pgrx-macros/Cargo.toml @@ -10,7 +10,7 @@ [package] name = "pgrx-macros" -version = "0.12.0" +version = "0.12.1" authors = ["PgCentral Foundation, Inc. "] license = "MIT" description = "Proc Macros for 'pgrx'" diff --git a/pgrx-pg-config/Cargo.toml b/pgrx-pg-config/Cargo.toml index fed840243..298944364 100644 --- a/pgrx-pg-config/Cargo.toml +++ b/pgrx-pg-config/Cargo.toml @@ -10,7 +10,7 @@ [package] name = "pgrx-pg-config" -version = "0.12.0" +version = "0.12.1" authors = ["PgCentral Foundation, Inc. "] license = "MIT" description = "A Postgres pg_config wrapper for 'pgrx'" diff --git a/pgrx-pg-sys/Cargo.toml b/pgrx-pg-sys/Cargo.toml index 15ed9bf2f..43be07a8c 100644 --- a/pgrx-pg-sys/Cargo.toml +++ b/pgrx-pg-sys/Cargo.toml @@ -10,7 +10,7 @@ [package] name = "pgrx-pg-sys" -version = "0.12.0" +version = "0.12.1" authors = ["PgCentral Foundation, Inc. "] license = "MIT" description = "Generated Rust bindings for Postgres internals, for use with 'pgrx'" diff --git a/pgrx-sql-entity-graph/Cargo.toml b/pgrx-sql-entity-graph/Cargo.toml index e7f31acd3..3691785ca 100644 --- a/pgrx-sql-entity-graph/Cargo.toml +++ b/pgrx-sql-entity-graph/Cargo.toml @@ -10,7 +10,7 @@ [package] name = "pgrx-sql-entity-graph" -version = "0.12.0" +version = "0.12.1" authors = ["PgCentral Foundation, Inc. "] license = "MIT" description = "Sql Entity Graph for `pgrx`" diff --git a/pgrx-tests/Cargo.toml b/pgrx-tests/Cargo.toml index 89e4b5f58..7546ecd9b 100644 --- a/pgrx-tests/Cargo.toml +++ b/pgrx-tests/Cargo.toml @@ -10,7 +10,7 @@ [package] name = "pgrx-tests" -version = "0.12.0" +version = "0.12.1" authors = ["PgCentral Foundation, Inc. "] 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.0" +version = "=0.12.1" [dev-dependencies] eyre.workspace = true # testing functions that return `eyre::Result` diff --git a/pgrx/Cargo.toml b/pgrx/Cargo.toml index 617c52d3e..c612586cd 100644 --- a/pgrx/Cargo.toml +++ b/pgrx/Cargo.toml @@ -10,7 +10,7 @@ [package] name = "pgrx" -version = "0.12.0" +version = "0.12.1" authors = ["PgCentral Foundation, Inc. "] license = "MIT" description = "pgrx: A Rust framework for creating Postgres extensions"