Skip to content

Commit f0bd943

Browse files
committed
Bump version to 0.15.5
1 parent 5e2114b commit f0bd943

4 files changed

Lines changed: 9 additions & 5 deletions

File tree

CHANGELOG.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
99

1010
### Fixed
1111

12-
- Fix `SyntaxError` on Python 3.14 in `Connection._register_handlers`. PEP 765 makes `continue`/`break`/`return` that exits a `finally` block a `SyntaxError` (was a `SyntaxWarning` in 3.13), so `zendriver/core/connection.py` failed to import under 3.14. Removed the no-op `finally: continue` (the loop already falls through to the next iteration, and the enclosing bare `except:` catches everything, so nothing changed behaviorally). Fixes #252
13-
1412
### Added
1513

1614
### Changed
1715

1816
### Removed
1917

18+
## [0.15.5] - 2026-07-15
19+
20+
### Fixed
21+
22+
- Fix `SyntaxError` on Python 3.14 in `Connection._register_handlers`. PEP 765 makes `continue`/`break`/`return` that exits a `finally` block a `SyntaxError` (was a `SyntaxWarning` in 3.13), so `zendriver/core/connection.py` failed to import under 3.14. Removed the no-op `finally: continue` (the loop already falls through to the next iteration, and the enclosing bare `except:` catches everything, so nothing changed behaviorally). Fixes #252
23+
2024
## [0.15.4] - 2026-06-27
2125

2226
### Fixed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "zendriver"
3-
version = "0.15.4"
3+
version = "0.15.5"
44
description = "A blazing fast, async-first, undetectable webscraping/web automation framework"
55
readme = "README.md"
66
authors = [{ name = "Stephan Lensky", email = "oss@slensky.com" }]

uv.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

zendriver/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.15.4"
1+
__version__ = "0.15.5"

0 commit comments

Comments
 (0)