From a1b0539a5e04c9b31fd4f1e798d71dd5d02d1976 Mon Sep 17 00:00:00 2001 From: Matic Zavadlal Date: Thu, 21 Aug 2025 11:08:50 +0100 Subject: [PATCH 1/2] fix: Improve Quick Start Section --- README.md | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 22557fd..2214c04 100644 --- a/README.md +++ b/README.md @@ -4,12 +4,18 @@ pnpm add browser-use-sdk ``` -## QuickStart +## Two-Step QuickStart + +1. ☝️ Get your API Key at [Browser Use Cloud](https://cloud.browser-use.com)... + +1. ✌️ Automate the web! ```ts import BrowserUse from 'browser-use-sdk'; -const client = new BrowserUse(); +const client = new BrowserUse({ + apiKey: 'bu_...', +}); const result = await client.tasks.run({ task: 'Search for the top 10 Hacker News posts and return the title and url.', From 1d5741072a82689e4d06f7feeaf8e1608ef84228 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Thu, 21 Aug 2025 10:09:07 +0000 Subject: [PATCH 2/2] release: 1.1.2 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 8 ++++++++ package.json | 2 +- src/version.ts | 2 +- 4 files changed, 11 insertions(+), 3 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index c4ddc74..53b7bc9 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "1.1.1" + ".": "1.1.2" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 9c9675a..5c7d29a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 1.1.2 (2025-08-21) + +Full Changelog: [v1.1.1...v1.1.2](https://github.com/browser-use/browser-use-node/compare/v1.1.1...v1.1.2) + +### Bug Fixes + +* Improve Quick Start Section ([a1b0539](https://github.com/browser-use/browser-use-node/commit/a1b0539a5e04c9b31fd4f1e798d71dd5d02d1976)) + ## 1.1.1 (2025-08-20) Full Changelog: [v1.1.0...v1.1.1](https://github.com/browser-use/browser-use-node/compare/v1.1.0...v1.1.1) diff --git a/package.json b/package.json index d9c0a9a..5b035bd 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "browser-use-sdk", - "version": "1.1.1", + "version": "1.1.2", "description": "The official TypeScript library for the Browser Use API", "author": "Browser Use ", "types": "dist/index.d.ts", diff --git a/src/version.ts b/src/version.ts index 4d7aaa3..dd184df 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '1.1.1'; // x-release-please-version +export const VERSION = '1.1.2'; // x-release-please-version