diff --git a/CHANGELOG.md b/CHANGELOG.md index f70a599..80feece 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,19 @@ +## v1.0.0 (2024-09-26) + +### Breaking + +* feat: use anyio and support sync + +BREAKING CHANGE: The plugin now requires anyio and nest-asyncio. ([`d03ad0c`](https://github.com/m9810223/playwright-async-pytest/commit/d03ad0c1e48402ebc39b70b11c666963c1980802)) + +### Chore + +* chore: update pre-commit config ([`9c0c900`](https://github.com/m9810223/playwright-async-pytest/commit/9c0c90044c854b074e9884759763c9b3027d9d71)) + + ## v0.17.0 (2024-05-24) ### Feature diff --git a/pyproject.toml b/pyproject.toml index 555dcf5..c93b3f9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "pytest_playwright_async" -version = "0.17.0" +version = "1.0.0" requires-python = ">=3.8" dependencies = [ # https://pypi.org/project/pytest-playwright/ diff --git a/src/pytest_playwright_async/__version__.py b/src/pytest_playwright_async/__version__.py index c4d9146..1e5a605 100644 --- a/src/pytest_playwright_async/__version__.py +++ b/src/pytest_playwright_async/__version__.py @@ -1 +1 @@ -VERSION = '0.17.0' +VERSION = '1.0.0'