diff --git a/.changeset/release-7627987e.md b/.changeset/release-7627987e.md deleted file mode 100644 index e134421..0000000 --- a/.changeset/release-7627987e.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"agent-browser": patch ---- - -Fixed version synchronization to automatically update Cargo.lock alongside Cargo.toml during releases, and made the CLI binary executable. This ensures the Rust CLI version stays in sync with the npm package version. diff --git a/CHANGELOG.md b/CHANGELOG.md index 279c0eb..02b98bb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # agent-browser +## 0.8.5 + +### Patch Changes + +- cb2f8c3: Fixed version synchronization to automatically update Cargo.lock alongside Cargo.toml during releases, and made the CLI binary executable. This ensures the Rust CLI version stays in sync with the npm package version. + ## 0.8.4 ### Patch Changes diff --git a/cli/Cargo.lock b/cli/Cargo.lock index 5856945..0d59a99 100644 --- a/cli/Cargo.lock +++ b/cli/Cargo.lock @@ -4,7 +4,7 @@ version = 4 [[package]] name = "agent-browser" -version = "0.8.4" +version = "0.8.5" dependencies = [ "dirs", "libc", diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 19f7748..9b0451d 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "agent-browser" -version = "0.8.4" +version = "0.8.5" edition = "2021" description = "Fast browser automation CLI for AI agents" license = "Apache-2.0" diff --git a/package.json b/package.json index 3115ada..bfa5d58 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "agent-browser", - "version": "0.8.4", + "version": "0.8.5", "description": "Headless browser automation CLI for AI agents", "type": "module", "main": "dist/daemon.js",