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/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.', 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