Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 10 additions & 10 deletions Cargo.lock

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

14 changes: 7 additions & 7 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,18 +33,18 @@ repository = "https://github.com/pgcentralfoundation/pgrx/"
homepage = "https://github.com/pgcentralfoundation/pgrx/"
# TODO: all crates should use this version rather than copy it
# See https://github.com/pgcentralfoundation/pgrx/pull/2100 comments
version = "0.18.0"
version = "0.18.1"

[workspace.metadata.local-install]
cargo-pgrx = { path = "cargo-pgrx" }

[workspace.dependencies]
pgrx-bench = { path = "./pgrx-bench", version = "=0.18.0" }
pgrx-macros = { path = "./pgrx-macros", version = "=0.18.0" }
pgrx-pg-sys = { path = "./pgrx-pg-sys", version = "=0.18.0" }
pgrx-sql-entity-graph = { path = "./pgrx-sql-entity-graph", version = "=0.18.0" }
pgrx-pg-config = { path = "./pgrx-pg-config", version = "=0.18.0" }
pgrx-bindgen = { path = "./pgrx-bindgen", version = "=0.18.0" }
pgrx-bench = { path = "./pgrx-bench", version = "=0.18.1" }
pgrx-macros = { path = "./pgrx-macros", version = "=0.18.1" }
pgrx-pg-sys = { path = "./pgrx-pg-sys", version = "=0.18.1" }
pgrx-sql-entity-graph = { path = "./pgrx-sql-entity-graph", version = "=0.18.1" }
pgrx-pg-config = { path = "./pgrx-pg-config", version = "=0.18.1" }
pgrx-bindgen = { path = "./pgrx-bindgen", version = "=0.18.1" }

cargo_metadata = "0.18.0"
cargo-edit = "=0.13.2" # format-preserving edits to cargo.toml
Expand Down
2 changes: 1 addition & 1 deletion cargo-pgrx/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

[package]
name = "cargo-pgrx"
version = "0.18.0"
version = "0.18.1"
authors.workspace = true
license.workspace = true
description = "Cargo subcommand for 'pgrx' to make Postgres extension development easy"
Expand Down
6 changes: 3 additions & 3 deletions cargo-pgrx/src/templates/cargo_toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,15 @@ pg_test = []
pg_bench = ["dep:pgrx-bench"]

[dependencies]
pgrx = "=0.18.0"
pgrx = "=0.18.1"

[dependencies.pgrx-bench]
version = "=0.18.0"
version = "=0.18.1"
optional = true

[dev-dependencies]
[dev-dependencies.pgrx-tests]
version = "=0.18.0"
version = "=0.18.1"

[profile.dev]
panic = "unwind"
Expand Down
2 changes: 1 addition & 1 deletion pgrx-bench/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

[package]
name = "pgrx-bench"
version = "0.18.0"
version = "0.18.1"
authors.workspace = true
license.workspace = true
description = "Benchmark runtime support for pgrx extensions"
Expand Down
2 changes: 1 addition & 1 deletion pgrx-bindgen/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "pgrx-bindgen"
description = "additional bindgen support for pgrx"
version = "0.18.0"
version = "0.18.1"
edition.workspace = true
license.workspace = true
homepage = "https://github.com/pgcentralfoundation/pgrx"
Expand Down
2 changes: 1 addition & 1 deletion pgrx-macros/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

[package]
name = "pgrx-macros"
version = "0.18.0"
version = "0.18.1"
authors.workspace = true
license.workspace = true
description = "Proc Macros for 'pgrx'"
Expand Down
2 changes: 1 addition & 1 deletion pgrx-pg-config/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

[package]
name = "pgrx-pg-config"
version = "0.18.0"
version = "0.18.1"
authors.workspace = true
license.workspace = true
description = "A Postgres pg_config wrapper for 'pgrx'"
Expand Down
2 changes: 1 addition & 1 deletion pgrx-pg-sys/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

[package]
name = "pgrx-pg-sys"
version = "0.18.0"
version = "0.18.1"
authors.workspace = true
license.workspace = true
description = "Generated Rust bindings for Postgres internals, for use with 'pgrx'"
Expand Down
Loading
Loading