diff --git a/CHANGELOG.md b/CHANGELOG.md index f3df57e..d15ee39 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ +## v2.4.1 (2022-08-25) +### Fix +* **ci:** Dont have too many pythons! ([`c61801c`](https://github.com/ainsleymcgrath/pytest-embrace/commit/c61801c2de9222260e2d0fa38ac8ec035febea0b)) + ## v2.4.0 (2022-08-25) ### Feature * Imports now solve themselves properly ([`b3aad48`](https://github.com/ainsleymcgrath/pytest-embrace/commit/b3aad48e7c62b33d02f9e9d441e8696c1932aca5)) diff --git a/pyproject.toml b/pyproject.toml index d42def0..8229ea8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "pytest-embrace" -version = "2.4.0" +version = "2.4.1" readme = "README.md" description = "💝 Dataclasses-as-tests. Describe the runtime once and multiply coverage with no boilerplate." authors = ["Ainsley McGrath "] diff --git a/pytest_embrace/__init__.py b/pytest_embrace/__init__.py index e1998a9..8ad3f81 100644 --- a/pytest_embrace/__init__.py +++ b/pytest_embrace/__init__.py @@ -1,4 +1,4 @@ -__version__ = "2.4.0" +__version__ = "2.4.1" from .case import CaseArtifact as CaseArtifact