Skip to content

Commit 7b3f826

Browse files
authored
v0.25.1 (#1170)
1 parent 1f8757b commit 7b3f826

File tree

7 files changed

+34
-15
lines changed

7 files changed

+34
-15
lines changed

AGENTS.md

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ To prepare a release:
4141
1. Create a branch (e.g. `prepare-v0.24.0`)
4242
2. Bump `version` in `package.json`
4343
3. Run `pnpm version:sync` to update `cli/Cargo.toml`, `cli/Cargo.lock`, and `packages/dashboard/package.json`
44-
4. Write the changelog entry in `CHANGELOG.md` at the top, under a new `## <version>` heading, wrapped in `<!-- release:start -->` and `<!-- release:end -->` markers
44+
4. Write the changelog entry in `CHANGELOG.md` at the top, under a new `## <version>` heading, wrapped in `<!-- release:start -->` and `<!-- release:end -->` markers. Remove the `<!-- release:start -->` and `<!-- release:end -->` markers from the previous release entry so only the new release has markers.
4545
5. Add a matching entry to `docs/src/app/changelog/page.mdx` at the top (below the `# Changelog` heading)
4646
6. Open a PR and merge to `main`
4747

@@ -51,27 +51,26 @@ When the PR merges, CI compares `package.json` version to what's on npm. If it d
5151

5252
Review the git log since the last release and write the entry in `CHANGELOG.md`. Follow the existing format and voice. Group changes under `### New Features`, `### Bug Fixes`, `### Improvements`, etc. Bold the feature/fix name, then describe it concisely. Reference PR numbers in parentheses.
5353

54-
Wrap the release notes (everything between the `## <version>` heading and the previous version) in markers so CI can extract them for the GitHub release:
54+
Wrap the release notes (everything between the `## <version>` heading and the previous version) in markers so CI can extract them for the GitHub release. Only the current release should have markers; remove the `<!-- release:start -->` and `<!-- release:end -->` markers from any previous release entry:
5555

5656
```markdown
57-
## 0.24.0
57+
## 0.24.1
5858

5959
<!-- release:start -->
60-
### New Features
61-
62-
- **Foo command** - Added `foo` command for bar (#1234)
63-
6460
### Bug Fixes
6561

6662
- Fixed **baz** not working when qux is enabled (#1235)
6763

6864
### Contributors
6965

7066
- @ctate
71-
- @somecontributor
7267
<!-- release:end -->
7368

74-
## 0.23.3
69+
## 0.24.0
70+
71+
### New Features
72+
73+
- **Foo command** - Added `foo` command for bar (#1234)
7574
```
7675

7776
Include a `### Contributors` section listing the GitHub usernames (with `@` prefix) of everyone who contributed to the release. Check the git log between the previous tag and HEAD to find them.

CHANGELOG.md

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,19 @@
11
# agent-browser
22

3-
## 0.25.0
3+
## 0.25.1
44

55
<!-- release:start -->
6+
### Improvements
7+
8+
- **Embedded dashboard** - The observability dashboard is now bundled directly into the CLI binary using `rust-embed`, eliminating the need for `dashboard install`. The dashboard is available immediately after installing agent-browser (#1169)
9+
10+
### Contributors
11+
12+
- @ctate
13+
<!-- release:end -->
14+
15+
## 0.25.0
16+
617
### New Features
718

819
- **AI chat command** - Added `chat` command for AI-powered browser automation. Supports single-shot mode (`chat "open google.com"`) and an interactive REPL. The AI agent can execute any agent-browser command via tool calls. Requires `AI_GATEWAY_API_KEY`. Configure the model with `--model` or `AI_GATEWAY_MODEL` (#1160, #1163)
@@ -26,7 +37,6 @@
2637
- @ctate
2738
- @jin-2-kakaoent
2839
- @hyunjinee
29-
<!-- release:end -->
3040

3141
## 0.24.1
3242

cli/Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

cli/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "agent-browser"
3-
version = "0.25.0"
3+
version = "0.25.1"
44
edition = "2021"
55
description = "Fast browser automation CLI for AI agents"
66
license = "Apache-2.0"

docs/src/app/changelog/page.mdx

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# Changelog
22

3+
## v0.25.1
4+
5+
<p className="text-[#888] text-sm">April 6, 2026</p>
6+
7+
### Improvements
8+
9+
- **Embedded dashboard** - The observability dashboard is now bundled directly into the CLI binary using `rust-embed`, eliminating the need for `dashboard install`. The dashboard is available immediately after installing agent-browser (#1169)
10+
11+
---
12+
313
## v0.25.0
414

515
<p className="text-[#888] text-sm">April 6, 2026</p>

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "agent-browser",
3-
"version": "0.25.0",
3+
"version": "0.25.1",
44
"description": "Browser automation CLI for AI agents",
55
"type": "module",
66
"files": [

packages/dashboard/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "dashboard",
3-
"version": "0.25.0",
3+
"version": "0.25.1",
44
"private": true,
55
"scripts": {
66
"dev": "next dev",

0 commit comments

Comments
 (0)