Skip to content

Commit 52cfc05

Browse files
committed
commons: re-pin store-types consumers to 0.2.0
The 0.2.0 bump landed with cortexkit-store and cortexkit-store-postgres still requiring ^0.1.0, which broke the workspace resolve -- caught by re-running the suite after the bump rather than trusting the pre-bump green. Same-workspace consumers re-pin in the same change as the bump.
1 parent 26847e9 commit 52cfc05

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

crates/cortexkit-store-postgres/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ authors.workspace = true
88
description = "Postgres backend mechanics (open, native single-writer lease, versioned migrations) for CortexKit module storage."
99

1010
[dependencies]
11-
cortexkit-store-types = { version = "0.1.0", path = "../cortexkit-store-types" }
11+
cortexkit-store-types = { version = "0.2.0", path = "../cortexkit-store-types" }
1212
cortexkit-lease = { version = "0.1.0", path = "../cortexkit-lease" }
1313
# Synchronous blocking driver: the store API is synchronous, so the blocking
1414
# client avoids an async-runtime bridge and confines postgres types to this crate.

crates/cortexkit-store/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,6 @@ default = ["sqlite"]
1212
sqlite = ["dep:rusqlite"]
1313

1414
[dependencies]
15-
cortexkit-store-types = { version = "0.1.0", path = "../cortexkit-store-types" }
15+
cortexkit-store-types = { version = "0.2.0", path = "../cortexkit-store-types" }
1616
cortexkit-lease = { version = "0.1.0", path = "../cortexkit-lease" }
1717
rusqlite = { version = "0.32", features = ["bundled"], optional = true }

0 commit comments

Comments
 (0)