diff --git a/.changeset/fix-binary-distribution.md b/.changeset/fix-binary-distribution.md new file mode 100644 index 0000000..8a947dd --- /dev/null +++ b/.changeset/fix-binary-distribution.md @@ -0,0 +1,7 @@ +--- +"agent-browser": patch +--- + +Fix native binary distribution in npm package + +Native binaries for all platforms (Linux x64/arm64, macOS x64/arm64, Windows x64) are now included in the npm package. Previously, the release workflow published to npm before building binaries, causing "No binary found" errors on installation. diff --git a/CHANGELOG.md b/CHANGELOG.md index d5cd440..52e514f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # agent-browser +## 0.7.1 + +### Patch Changes + +- Fix native binary distribution in npm package. Native binaries for all platforms (Linux x64/arm64, macOS x64/arm64, Windows x64) are now included in the npm package. Previously, the release workflow published to npm before building binaries, causing "No binary found" errors on installation. + ## 0.7.0 ### Minor Changes diff --git a/cli/Cargo.toml b/cli/Cargo.toml index d3cde4d..96b1f53 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "agent-browser" -version = "0.6.0" +version = "0.7.1" edition = "2021" description = "Fast browser automation CLI for AI agents" license = "Apache-2.0" diff --git a/docs/src/app/changelog/page.tsx b/docs/src/app/changelog/page.tsx index ded3e3a..306a4ca 100644 --- a/docs/src/app/changelog/page.tsx +++ b/docs/src/app/changelog/page.tsx @@ -6,6 +6,18 @@ export default function Changelog() {

Changelog

+

v0.7.1

+

January 2026

+ +

Bug Fixes

+ + +
+

v0.7.0

January 2026

diff --git a/package.json b/package.json index 6b7a0ec..bc3e7c5 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "agent-browser", - "version": "0.7.0", + "version": "0.7.1", "description": "Headless browser automation CLI for AI agents", "type": "module", "main": "dist/daemon.js",