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
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
16 changes: 6 additions & 10 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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",
Expand Down Expand Up @@ -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<major>\\d+)\\.(?P<minor>\\d+)\\.(?P<patch>\\d+)"
serialize = ["{major}.{minor}.{patch}"]
search = "{current_version}"
Expand Down