diff --git a/CHANGELOG.md b/CHANGELOG.md index fd11434..5f83d1e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,16 @@ adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## [Unreleased] +## [0.3.1] - 2024-09-03 + +### Added + +### Changed + +- Moved the dependencies for test packages (`pytest`, `pytest-django`, `pytest-cov`) into dev dependencies. + +### Removed + ## [0.3.0] - 2024-08-28 ### Added diff --git a/pyproject.toml b/pyproject.toml index e8e827d..050b8a2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -25,14 +25,8 @@ readme = "README.md" # Do not manually edit the version, use `make version_{type}` instead. # This should match the version in the [tool.bumpversion] section. -version = "0.3.0" -dependencies = [ - "django>=3.2", - "djangorestframework>=3.12.0", - "pytest-django==4.7.0", - "pytest==8.3.2", - "pytest-cov", -] +version = "0.3.1" +dependencies = ["django>=3.2", "djangorestframework>=3.12.0"] [project.urls] # See https://daniel.feldroy.com/posts/2023-08-pypi-project-urls-cheatsheet for @@ -44,7 +38,9 @@ changelog = "https://github.com/kraken-tech/django-rest-framework-recursive/blob dev = [ # Testing "pytest", - "nox", # Install in virtualenv so Mypy has access to the package types. + "pytest-django>=4.7.0", + "pytest-cov", + "nox", # Install in virtualenv so Mypy has access to the package types. # Linting "ruff", @@ -136,7 +132,7 @@ filterwarnings = "error" [tool.bumpversion] # Do not manually edit the version, use `make version_{type}` instead. # This should match the version in the [project] section. -current_version = "0.3.0" +current_version = "0.3.1" parse = "(?P\\d+)\\.(?P\\d+)\\.(?P\\d+)" serialize = ["{major}.{minor}.{patch}"] search = "{current_version}"