Skip to content

Commit dfbc169

Browse files
committed
fix: CLI version display and docs update (v2.5.2)
- Fix hardcoded VERSION constant: 2.0.0 → 2.5.2 - SKILL.md comprehensive update with all v2.1-2.5 features - Bump to v2.5.2
1 parent 28e2d6f commit dfbc169

File tree

5 files changed

+201
-46
lines changed

5 files changed

+201
-46
lines changed

CHANGELOG.md

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

3+
## [2.5.2] - 2026-01-28
4+
5+
### Fixed
6+
- **CLI version display** - Fixed hardcoded VERSION constant showing "2.0.0" instead of actual version
7+
8+
### Docs
9+
- **SKILL.md overhaul** - Comprehensive update with all v2.1-2.5 features including semantic locators, workflows with loops/arguments, frame context, window isolation, and more
10+
311
## [2.5.1] - 2026-01-28
412

513
### Fixed

manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"manifest_version": 3,
33
"name": "Surf",
4-
"version": "2.5.1",
4+
"version": "2.5.2",
55
"description": "Browser automation CLI for AI agents",
66
"options_page": "options/options.html",
77
"icons": {

native/cli.cjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -290,7 +290,7 @@ function resizeImage(filePath, maxSize) {
290290
}
291291
}
292292
const args = process.argv.slice(2);
293-
const VERSION = "2.0.0";
293+
const VERSION = "2.5.2";
294294

295295
const ALIASES = {
296296
snap: "screenshot",

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "surf-cli",
3-
"version": "2.5.1",
3+
"version": "2.5.2",
44
"description": "CLI for AI agents to control Chrome. Zero config, agent-agnostic, battle-tested.",
55
"keywords": [
66
"chrome",

0 commit comments

Comments
 (0)