Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
permissions:
contents: read
id-token: write
runs-on: depot-ubuntu-24.04
runs-on: ${{ github.repository == 'stainless-sdks/browser-use-python' && 'depot-ubuntu-24.04' || 'ubuntu-latest' }}
steps:
- uses: actions/checkout@v4

Expand Down
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "1.0.2"
".": "1.0.3"
}
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# Changelog

## 1.0.3 (2025-08-27)

Full Changelog: [v1.0.2...v1.0.3](https://github.com/browser-use/browser-use-python/compare/v1.0.2...v1.0.3)

### Bug Fixes

* avoid newer type syntax ([f2414e8](https://github.com/browser-use/browser-use-python/commit/f2414e876f730a0246a05fb4b4b69a7bf679f9e0))


### Chores

* **internal:** change ci workflow machines ([70809e8](https://github.com/browser-use/browser-use-python/commit/70809e88085baa9d34a1a3d4c55ef82f6670f444))
* **internal:** update pyright exclude list ([7764e77](https://github.com/browser-use/browser-use-python/commit/7764e77d21b6b03696b83434390c114bc18dfa3e))

## 1.0.2 (2025-08-22)

Full Changelog: [v1.0.1...v1.0.2](https://github.com/browser-use/browser-use-python/compare/v1.0.1...v1.0.2)
Expand Down
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "browser-use-sdk"
version = "1.0.2"
version = "1.0.3"
description = "The official Python library for the browser-use API"
dynamic = ["readme"]
license = "Apache-2.0"
Expand Down Expand Up @@ -148,6 +148,7 @@ exclude = [
"_dev",
".venv",
".nox",
".git",
]

reportImplicitOverride = true
Expand Down
2 changes: 1 addition & 1 deletion src/browser_use_sdk/_models.py
Original file line number Diff line number Diff line change
Expand Up @@ -304,7 +304,7 @@ def model_dump(
exclude_none=exclude_none,
)

return cast(dict[str, Any], json_safe(dumped)) if mode == "json" else dumped
return cast("dict[str, Any]", json_safe(dumped)) if mode == "json" else dumped

@override
def model_dump_json(
Expand Down
2 changes: 1 addition & 1 deletion src/browser_use_sdk/_version.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.

__title__ = "browser_use_sdk"
__version__ = "1.0.2" # x-release-please-version
__version__ = "1.0.3" # x-release-please-version