From cdd10ebb54dfc88fba29212cb74ef1d26e415c30 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 13 Feb 2026 10:59:44 -0600 Subject: [PATCH] chore: version packages (#438) Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- .changeset/fix-clippy-lints.md | 5 ----- CHANGELOG.md | 6 ++++++ cli/Cargo.lock | 2 +- cli/Cargo.toml | 2 +- package.json | 2 +- 5 files changed, 9 insertions(+), 8 deletions(-) delete mode 100644 .changeset/fix-clippy-lints.md diff --git a/.changeset/fix-clippy-lints.md b/.changeset/fix-clippy-lints.md deleted file mode 100644 index 786e1e5..0000000 --- a/.changeset/fix-clippy-lints.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"agent-browser": patch ---- - -Fix all Clippy lint warnings in the Rust CLI: remove redundant import, use `.first()` instead of `.get(0)`, use `.copied()` instead of `.map(|s| *s)`, use `.contains()` instead of `.iter().any()`, use `then_some` instead of lazy `then`, and simplify redundant match guards. diff --git a/CHANGELOG.md b/CHANGELOG.md index aae9a56..249dbed 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # agent-browser +## 0.9.4 + +### Patch Changes + +- 323b6cd: Fix all Clippy lint warnings in the Rust CLI: remove redundant import, use `.first()` instead of `.get(0)`, use `.copied()` instead of `.map(|s| *s)`, use `.contains()` instead of `.iter().any()`, use `then_some` instead of lazy `then`, and simplify redundant match guards. + ## 0.9.3 ### Patch Changes diff --git a/cli/Cargo.lock b/cli/Cargo.lock index 863d139..1710f56 100644 --- a/cli/Cargo.lock +++ b/cli/Cargo.lock @@ -4,7 +4,7 @@ version = 4 [[package]] name = "agent-browser" -version = "0.9.3" +version = "0.9.4" dependencies = [ "base64", "dirs", diff --git a/cli/Cargo.toml b/cli/Cargo.toml index e0548c2..5e4ef0c 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "agent-browser" -version = "0.9.3" +version = "0.9.4" edition = "2021" description = "Fast browser automation CLI for AI agents" license = "Apache-2.0" diff --git a/package.json b/package.json index fb7dda6..b4fa9a5 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "agent-browser", - "version": "0.9.3", + "version": "0.9.4", "description": "Headless browser automation CLI for AI agents", "type": "module", "main": "dist/daemon.js",