Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion docs/develop.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ After syncing dependencies (which include `typer-invoke`), try the commands belo
```
python -m admin.lint --help
python -m admin.build --help
python -m admin.pip --help
python -m admin.test --help
```
* Help with a specific command
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ build-backend = 'uv_build'

[project]
name = 'pytest-params'
version = '0.4.0'
version = '0.5.0'
description = 'Simplified pytest test case parameters.'
readme = 'README.md'
authors = [{name = 'Joao Coelho'}]
Expand Down
2 changes: 1 addition & 1 deletion src/pytest_params/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from .params import params, params_values
from .request_params import get_request_param

__version__ = '0.4.0'
__version__ = '0.5.0'

__all__ = ['get_request_param', 'params', 'params_values']