diff --git a/.changeset/release-e95e7a17.md b/.changeset/release-e95e7a17.md deleted file mode 100644 index b3ef7fc..0000000 --- a/.changeset/release-e95e7a17.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"agent-browser": patch ---- - -Added support for device scale factor (retina display) in the viewport command via an optional scale parameter. Also added webview target type support for better Electron application compatibility, and the pages list now includes target type information. diff --git a/CHANGELOG.md b/CHANGELOG.md index e3ddcc3..e62ccc0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # agent-browser +## 0.17.1 + +### Patch Changes + +- 94cd888: Added support for device scale factor (retina display) in the viewport command via an optional scale parameter. Also added webview target type support for better Electron application compatibility, and the pages list now includes target type information. + ## 0.17.0 ### Minor Changes diff --git a/cli/Cargo.lock b/cli/Cargo.lock index dea4a18..e9ec499 100644 --- a/cli/Cargo.lock +++ b/cli/Cargo.lock @@ -45,7 +45,7 @@ dependencies = [ [[package]] name = "agent-browser" -version = "0.17.0" +version = "0.17.1" dependencies = [ "aes-gcm", "async-trait", diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 3a2d65e..2093ceb 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "agent-browser" -version = "0.17.0" +version = "0.17.1" edition = "2021" description = "Fast browser automation CLI for AI agents" license = "Apache-2.0" diff --git a/package.json b/package.json index 570966b..c925de7 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "agent-browser", - "version": "0.17.0", + "version": "0.17.1", "description": "Headless browser automation CLI for AI agents", "type": "module", "main": "dist/daemon.js",