From c994ab27ce570d95961f84d8e54a48dd04bd3dfc Mon Sep 17 00:00:00 2001 From: Matic Zavadlal Date: Thu, 21 Aug 2025 11:08:26 +0100 Subject: [PATCH 1/2] fix: Improve Quick Start Section --- README.md | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 091fe42..e313e6a 100644 --- a/README.md +++ b/README.md @@ -6,20 +6,22 @@ pip install browser-use-sdk ``` -## Quick Start +## Two-Step QuickStart -> Get your API Key at [Browser Use Cloud](https://cloud.browser-use.com)! +1. ☝️ Get your API Key at [Browser Use Cloud](https://cloud.browser-use.com)... + +1. ✌️ Automate the web! ```python from browser_use_sdk import BrowserUse -client = BrowserUse() +client = BrowserUse(api_key="bu_...") -run = client.tasks.run( +result = client.tasks.run( task="Search for the top 10 Hacker News posts and return the title and url." ) -run.done_output +result.done_output ``` > The full API of this library can be found in [api.md](api.md). From fa3652514454f92ec8122739daaeb87bed9d23d4 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:08:44 +0000 Subject: [PATCH 2/2] release: 1.0.1 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 8 ++++++++ pyproject.toml | 2 +- src/browser_use_sdk/_version.py | 2 +- 4 files changed, 11 insertions(+), 3 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index fea3454..a8f7122 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "1.0.0" + ".": "1.0.1" } \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index f35ed26..0b0a227 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 1.0.1 (2025-08-21) + +Full Changelog: [v1.0.0...v1.0.1](https://github.com/browser-use/browser-use-python/compare/v1.0.0...v1.0.1) + +### Bug Fixes + +* Improve Quick Start Section ([c994ab2](https://github.com/browser-use/browser-use-python/commit/c994ab27ce570d95961f84d8e54a48dd04bd3dfc)) + ## 1.0.0 (2025-08-20) Full Changelog: [v0.3.0...v1.0.0](https://github.com/browser-use/browser-use-python/compare/v0.3.0...v1.0.0) diff --git a/pyproject.toml b/pyproject.toml index f4106db..f335717 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "browser-use-sdk" -version = "1.0.0" +version = "1.0.1" description = "The official Python library for the browser-use API" dynamic = ["readme"] license = "Apache-2.0" diff --git a/src/browser_use_sdk/_version.py b/src/browser_use_sdk/_version.py index 486d1c9..8b431f6 100644 --- a/src/browser_use_sdk/_version.py +++ b/src/browser_use_sdk/_version.py @@ -1,4 +1,4 @@ # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. __title__ = "browser_use_sdk" -__version__ = "1.0.0" # x-release-please-version +__version__ = "1.0.1" # x-release-please-version