Skip to content
Open
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.13"
".": "0.0.14"
}
20 changes: 20 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,26 @@ 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.14](https://github.com/aram-devdocs/plumb/compare/v0.0.13...v0.0.14) (2026-06-21)


### Features

* **codegen:** infer workspace token modules ([#311](https://github.com/aram-devdocs/plumb/issues/311)) ([ab126c9](https://github.com/aram-devdocs/plumb/commit/ab126c975e860ae240c3ef84a3b9b875a5938de9))


### Bug Fixes

* **cdp,mcp:** stabilize page linting noise ([#309](https://github.com/aram-devdocs/plumb/issues/309)) ([627c4ec](https://github.com/aram-devdocs/plumb/commit/627c4ec2689a9195114903e93d200cd9695c99c9))
* **cdp:** keep default raw readiness best effort ([#310](https://github.com/aram-devdocs/plumb/issues/310)) ([8c952d5](https://github.com/aram-devdocs/plumb/commit/8c952d5de87734fa80ed686a08aa812bfe02ffa4))
* **codegen:** parse rem token lengths ([#313](https://github.com/aram-devdocs/plumb/issues/313)) ([8c2a3bf](https://github.com/aram-devdocs/plumb/commit/8c2a3bf02aa684e11784b6a187818bd5f2099935))
* **codegen:** prefer light token exports ([#312](https://github.com/aram-devdocs/plumb/issues/312)) ([8be27ec](https://github.com/aram-devdocs/plumb/commit/8be27ec8011ca4f46aeeab608ff589ab046321fe))


### Documentation

* ship the full brand kit and polish the book theme ([#307](https://github.com/aram-devdocs/plumb/issues/307)) ([59d1046](https://github.com/aram-devdocs/plumb/commit/59d1046674706915db696486d3c34143129c66fe))

## [0.0.13](https://github.com/aram-devdocs/plumb/compare/v0.0.12...v0.0.13) (2026-06-19)


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.13"
version = "0.0.14"
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.13" }
plumb-format = { path = "crates/plumb-format", version = "0.0.13" }
plumb-cdp = { path = "crates/plumb-cdp", version = "0.0.13" }
plumb-config = { path = "crates/plumb-config", version = "0.0.13" }
plumb-codegen = { path = "crates/plumb-codegen", version = "0.0.13" }
plumb-mcp = { path = "crates/plumb-mcp", version = "0.0.13" }
plumb-core = { path = "crates/plumb-core", version = "0.0.14" }
plumb-format = { path = "crates/plumb-format", version = "0.0.14" }
plumb-cdp = { path = "crates/plumb-cdp", version = "0.0.14" }
plumb-config = { path = "crates/plumb-config", version = "0.0.14" }
plumb-codegen = { path = "crates/plumb-codegen", version = "0.0.14" }
plumb-mcp = { path = "crates/plumb-mcp", version = "0.0.14" }

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