Skip to content

Commit 91f7fcf

Browse files
authored
Merge pull request #25 from browser-use/release-please--branches--main--changes--next--components--browser-use-sdk
release: 1.1.2
2 parents f836ab8 + 1d57410 commit 91f7fcf

File tree

5 files changed

+19
-5
lines changed

5 files changed

+19
-5
lines changed

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "1.1.1"
2+
".": "1.1.2"
33
}

CHANGELOG.md

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

3+
## 1.1.2 (2025-08-21)
4+
5+
Full Changelog: [v1.1.1...v1.1.2](https://github.com/browser-use/browser-use-node/compare/v1.1.1...v1.1.2)
6+
7+
### Bug Fixes
8+
9+
* Improve Quick Start Section ([a1b0539](https://github.com/browser-use/browser-use-node/commit/a1b0539a5e04c9b31fd4f1e798d71dd5d02d1976))
10+
311
## 1.1.1 (2025-08-20)
412

513
Full Changelog: [v1.1.0...v1.1.1](https://github.com/browser-use/browser-use-node/compare/v1.1.0...v1.1.1)

README.md

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,18 @@
44
pnpm add browser-use-sdk
55
```
66

7-
## QuickStart
7+
## Two-Step QuickStart
8+
9+
1. ☝️ Get your API Key at [Browser Use Cloud](https://cloud.browser-use.com)...
10+
11+
1. ✌️ Automate the web!
812

913
```ts
1014
import BrowserUse from 'browser-use-sdk';
1115

12-
const client = new BrowserUse();
16+
const client = new BrowserUse({
17+
apiKey: 'bu_...',
18+
});
1319

1420
const result = await client.tasks.run({
1521
task: 'Search for the top 10 Hacker News posts and return the title and url.',

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "browser-use-sdk",
3-
"version": "1.1.1",
3+
"version": "1.1.2",
44
"description": "The official TypeScript library for the Browser Use API",
55
"author": "Browser Use <[email protected]>",
66
"types": "dist/index.d.ts",

src/version.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export const VERSION = '1.1.1'; // x-release-please-version
1+
export const VERSION = '1.1.2'; // x-release-please-version

0 commit comments

Comments
 (0)