diff --git a/.changeset/release-38f656e6.md b/.changeset/release-38f656e6.md deleted file mode 100644 index f04781c..0000000 --- a/.changeset/release-38f656e6.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"agent-browser": minor ---- - -Added configuration file support with automatic loading from user and project directories, new profiler commands for Chrome DevTools profiling, computed styles getter, browser extension loading, storage state management, and iOS device emulation. Expanded click command with new-tab option, improved find command with additional actions and filtering options, and enhanced CDP connection to accept WebSocket URLs. Documentation has been significantly expanded with new sections for configuration, profiling, and proxy support. diff --git a/CHANGELOG.md b/CHANGELOG.md index 3b58616..dccbeaf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # agent-browser +## 0.11.0 + +### Minor Changes + +- 5dc40b4: Added configuration file support with automatic loading from user and project directories, new profiler commands for Chrome DevTools profiling, computed styles getter, browser extension loading, storage state management, and iOS device emulation. Expanded click command with new-tab option, improved find command with additional actions and filtering options, and enhanced CDP connection to accept WebSocket URLs. Documentation has been significantly expanded with new sections for configuration, profiling, and proxy support. + ## 0.10.0 ### Minor Changes diff --git a/cli/Cargo.lock b/cli/Cargo.lock index 441ff6a..97f30b5 100644 --- a/cli/Cargo.lock +++ b/cli/Cargo.lock @@ -4,7 +4,7 @@ version = 4 [[package]] name = "agent-browser" -version = "0.10.0" +version = "0.11.0" dependencies = [ "base64", "dirs", diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 336a8f5..ed89589 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "agent-browser" -version = "0.10.0" +version = "0.11.0" edition = "2021" description = "Fast browser automation CLI for AI agents" license = "Apache-2.0" diff --git a/package.json b/package.json index e192bcf..590d472 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "agent-browser", - "version": "0.10.0", + "version": "0.11.0", "description": "Headless browser automation CLI for AI agents", "type": "module", "main": "dist/daemon.js",