From 4792a6815ccd62b4480dc68460585ad23532a8f7 Mon Sep 17 00:00:00 2001 From: Stephan Lensky Date: Sat, 23 Nov 2024 21:10:20 -0500 Subject: [PATCH] Bump version to 0.2.1 --- CHANGELOG.md | 10 ++++++++-- pyproject.toml | 2 +- uv.lock | 2 +- zendriver/_version.py | 2 +- 4 files changed, 11 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 052b3be..653ae56 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Added +### Changed + +### Removed + +## [0.2.1] - 2024-11-23 + +### Added + - Add automated testing framework! @stephanlensky - For now, just a few tests are written, including one to test browserscan.com bot detection - In the future, we can expand this test suite further (see [Zendriver#18](https://github.com/stephanlensky/zendriver/issues/18)) @@ -20,8 +28,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Upgraded `websockets` to latest version (`>=14.0`) @yoori @stephanlensky -### Removed - ## [0.2.0] - 2024-11-17 ### Changed diff --git a/pyproject.toml b/pyproject.toml index c287588..e2f5773 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "zendriver" -version = "0.2.0" +version = "0.2.1" description = "A blazing fast, async-first, undetectable webscraping/web automation framework" readme = "README.md" authors = [{ name = "Stephan Lensky", email = "oss@slensky.com" }] diff --git a/uv.lock b/uv.lock index fe82bcc..dffc328 100644 --- a/uv.lock +++ b/uv.lock @@ -904,7 +904,7 @@ wheels = [ [[package]] name = "zendriver" -version = "0.2.0" +version = "0.2.1" source = { editable = "." } dependencies = [ { name = "asyncio-atexit" }, diff --git a/zendriver/_version.py b/zendriver/_version.py index d3ec452..3ced358 100644 --- a/zendriver/_version.py +++ b/zendriver/_version.py @@ -1 +1 @@ -__version__ = "0.2.0" +__version__ = "0.2.1"