From 79ef5764fa4f2d3e21f9da412ecb80bfab1fb001 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 3 Feb 2026 01:49:58 -0600 Subject: [PATCH] chore: version packages (#360) Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- .changeset/release-17dc02f0.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/release-17dc02f0.md diff --git a/.changeset/release-17dc02f0.md b/.changeset/release-17dc02f0.md deleted file mode 100644 index f28df94..0000000 --- a/.changeset/release-17dc02f0.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"agent-browser": minor ---- - -Add iOS Simulator and real device support for mobile Safari testing via Appium. New CLI commands include `device list` to show available simulators, `tap` and `swipe` for touch interactions, and the `--device` flag to specify which iOS device to use. Configure with `-p ios` provider flag or `AGENT_BROWSER_PROVIDER=ios` environment variable. diff --git a/CHANGELOG.md b/CHANGELOG.md index b80c3c7..2abda29 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # agent-browser +## 0.9.0 + +### Minor Changes + +- 9d021bd: Add iOS Simulator and real device support for mobile Safari testing via Appium. New CLI commands include `device list` to show available simulators, `tap` and `swipe` for touch interactions, and the `--device` flag to specify which iOS device to use. Configure with `-p ios` provider flag or `AGENT_BROWSER_PROVIDER=ios` environment variable. + ## 0.8.10 ### Patch Changes diff --git a/cli/Cargo.lock b/cli/Cargo.lock index ebd0b52..4b8d701 100644 --- a/cli/Cargo.lock +++ b/cli/Cargo.lock @@ -4,7 +4,7 @@ version = 4 [[package]] name = "agent-browser" -version = "0.8.10" +version = "0.9.0" dependencies = [ "base64", "dirs", diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 70e480c..2036abb 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "agent-browser" -version = "0.8.10" +version = "0.9.0" edition = "2021" description = "Fast browser automation CLI for AI agents" license = "Apache-2.0" diff --git a/package.json b/package.json index 2cf24be..e0ce1b0 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "agent-browser", - "version": "0.8.10", + "version": "0.9.0", "description": "Headless browser automation CLI for AI agents", "type": "module", "main": "dist/daemon.js",