Skip to content

Commit 79578dd

Browse files
authored
release: 0.4.0 (#281)
* release: 0.4.0 * stagehand-alpha -> stagehand
1 parent e8867e1 commit 79578dd

File tree

6 files changed

+105
-92
lines changed

6 files changed

+105
-92
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-
".": "0.3.1"
2+
".": "0.4.0"
33
}

CHANGELOG.md

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

3+
## [0.4.0](https://github.com/browserbase/stagehand-python/compare/v0.3.1...v0.4.0) (2026-01-13)
4+
5+
6+
### Features
7+
8+
* don't close new opened tabs ([#161](https://github.com/browserbase/stagehand-python/issues/161)) ([#169](https://github.com/browserbase/stagehand-python/issues/169)) ([f68e86c](https://github.com/browserbase/stagehand-python/commit/f68e86c90d9e5f30d2f447ada65cc711ac531baa))
9+
10+
11+
### Bug Fixes
12+
13+
* active page context ([#251](https://github.com/browserbase/stagehand-python/issues/251)) ([d61e118](https://github.com/browserbase/stagehand-python/commit/d61e118ccc8845ac95e4579f6137a91abb004943))
14+
* set injected Stagehand cursor position to fixed for correct viewport tracking ([#121](https://github.com/browserbase/stagehand-python/issues/121)) ([#122](https://github.com/browserbase/stagehand-python/issues/122)) ([93c16e3](https://github.com/browserbase/stagehand-python/commit/93c16e392d754227f9bec47ee9d9f26046bfb770))
15+
316
## 0.3.1 (2026-01-13)
417

518
Full Changelog: [v0.3.0...v0.3.1](https://github.com/browserbase/stagehand-python/compare/v0.3.0...v0.3.1)

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ uv run python examples/local_example.py
117117
```
118118

119119
```bash
120-
pip install stagehand-alpha
120+
pip install stagehand
121121
uv run python examples/local_example.py
122122
```
123123

@@ -325,7 +325,7 @@ By default, the async client uses `httpx` for HTTP requests. For improved concur
325325
Install `aiohttp`:
326326

327327
```sh
328-
uv run pip install stagehand-alpha[aiohttp]
328+
uv run pip install stagehand[aiohttp]
329329
```
330330

331331
Then instantiate the client with `http_client=DefaultAioHttpClient()`:

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
2-
name = "stagehand-alpha"
3-
version = "0.3.1"
2+
name = "stagehand"
3+
version = "0.4.0"
44
description = "The official Python library for the stagehand API"
55
dynamic = ["readme"]
66
license = "Apache-2.0"

src/stagehand/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
22

33
__title__ = "stagehand"
4-
__version__ = "0.3.1" # x-release-please-version
4+
__version__ = "0.4.0" # x-release-please-version

0 commit comments

Comments
 (0)