Skip to content

Commit

Permalink
Version 2.2.1 — Add support for pytest 8.x; drop Python 3.7 support; …
Browse files Browse the repository at this point in the history
…add Python 3.12 support
  • Loading branch information
theY4Kman committed May 27, 2024
1 parent 9c457b5 commit 05dd2f1
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.


## [Unreleased]


## [2.2.1] — 2024-05-27
### Changed
- Drop support for Python 3.7 (now EOL)
- Add support for Python 3.12
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = 'pytest-lambda'
version = "2.2.0"
version = "2.2.1"
description = 'Define pytest fixtures with lambda functions.'
license = 'MIT'

Expand Down
2 changes: 1 addition & 1 deletion pytest_lambda/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""Define pytest fixtures using lambda functions"""

__version__ = '2.2.0'
__version__ = '2.2.1'

from .fixtures import *
from .util import *

0 comments on commit 05dd2f1

Please sign in to comment.