diff --git a/CHANGELOG.md b/CHANGELOG.md index d46345f..938d6f6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -15,6 +15,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Removed +## [0.1.2] - 2024-11-11 + +### Fixed + +- Pinned requirement `websockets<14`, fixing the `AttributeError: 'NoneType' object has no attribute 'closed'` crash which occurs on the latest version of `websockets`. +- Fixed incorrect `browser.close()` method in examples and documentation -- the correct method is `browser.stop()`. +- Fixed `atexit` handler to correctly handle async `browser.stop()` method. + ## [0.1.1] - 2024-10-29 ### Added diff --git a/pyproject.toml b/pyproject.toml index 1123ad0..80122e5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "zendriver" -version = "0.1.1" +version = "0.1.2" description = "A blazing fast, async-first, undetectable webscraping/web automation framework" readme = "README.md" authors = [{ name = "Stephan Lensky", email = "oss@slensky.com" }]