Skip to content
Closed
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
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "0.0.2"
".": "0.0.3"
}
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,13 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),

From the first release onward, this file is maintained automatically by [`release-please`](https://github.com/googleapis/release-please) based on [Conventional Commits](https://www.conventionalcommits.org/) on `main`. Do not edit released sections by hand.

## [0.0.3](https://github.com/aram-devdocs/plumb/compare/v0.0.2...v0.0.3) (2026-05-07)


### Bug Fixes

* **ci:** pin workspace deps to current crate version ([#248](https://github.com/aram-devdocs/plumb/issues/248)) ([4c8ce85](https://github.com/aram-devdocs/plumb/commit/4c8ce8581c3a4c00c4c5c996e93803e484b95a4c))

## [0.0.2](https://github.com/aram-devdocs/plumb/compare/v0.0.1...v0.0.2) (2026-05-07)


Expand Down
14 changes: 7 additions & 7 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ default-members = [
]

[workspace.package]
version = "0.0.2"
version = "0.0.3"
edition = "2024"
rust-version = "1.95"
license = "MIT OR Apache-2.0"
Expand All @@ -36,12 +36,12 @@ categories = ["command-line-utilities", "development-tools", "web-programming"]

[workspace.dependencies]
# Internal path dependencies resolved by consumers.
plumb-core = { path = "crates/plumb-core", version = "0.0.2" }
plumb-format = { path = "crates/plumb-format", version = "0.0.2" }
plumb-cdp = { path = "crates/plumb-cdp", version = "0.0.2" }
plumb-config = { path = "crates/plumb-config", version = "0.0.2" }
plumb-codegen = { path = "crates/plumb-codegen", version = "0.0.2" }
plumb-mcp = { path = "crates/plumb-mcp", version = "0.0.2" }
plumb-core = { path = "crates/plumb-core", version = "0.0.3" }
plumb-format = { path = "crates/plumb-format", version = "0.0.3" }
plumb-cdp = { path = "crates/plumb-cdp", version = "0.0.3" }
plumb-config = { path = "crates/plumb-config", version = "0.0.3" }
plumb-codegen = { path = "crates/plumb-codegen", version = "0.0.3" }
plumb-mcp = { path = "crates/plumb-mcp", version = "0.0.3" }

# CDP driver.
chromiumoxide = { version = "0.9", default-features = false }
Expand Down