Skip to content

Commit 7c3bc1d

Browse files
authored
Merge pull request #12 from kraken-tech/update/dev-dependencies
2 parents 40576f9 + 758009a commit 7c3bc1d

File tree

2 files changed

+16
-10
lines changed

2 files changed

+16
-10
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,16 @@ adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

88
## [Unreleased]
99

10+
## [0.3.1] - 2024-09-03
11+
12+
### Added
13+
14+
### Changed
15+
16+
- Moved the dependencies for test packages (`pytest`, `pytest-django`, `pytest-cov`) into dev dependencies.
17+
18+
### Removed
19+
1020
## [0.3.0] - 2024-08-28
1121

1222
### Added

pyproject.toml

Lines changed: 6 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -25,14 +25,8 @@ readme = "README.md"
2525

2626
# Do not manually edit the version, use `make version_{type}` instead.
2727
# This should match the version in the [tool.bumpversion] section.
28-
version = "0.3.0"
29-
dependencies = [
30-
"django>=3.2",
31-
"djangorestframework>=3.12.0",
32-
"pytest-django==4.7.0",
33-
"pytest==8.3.2",
34-
"pytest-cov",
35-
]
28+
version = "0.3.1"
29+
dependencies = ["django>=3.2", "djangorestframework>=3.12.0"]
3630

3731
[project.urls]
3832
# 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
4438
dev = [
4539
# Testing
4640
"pytest",
47-
"nox", # Install in virtualenv so Mypy has access to the package types.
41+
"pytest-django>=4.7.0",
42+
"pytest-cov",
43+
"nox", # Install in virtualenv so Mypy has access to the package types.
4844

4945
# Linting
5046
"ruff",
@@ -136,7 +132,7 @@ filterwarnings = "error"
136132
[tool.bumpversion]
137133
# Do not manually edit the version, use `make version_{type}` instead.
138134
# This should match the version in the [project] section.
139-
current_version = "0.3.0"
135+
current_version = "0.3.1"
140136
parse = "(?P<major>\\d+)\\.(?P<minor>\\d+)\\.(?P<patch>\\d+)"
141137
serialize = ["{major}.{minor}.{patch}"]
142138
search = "{current_version}"

0 commit comments

Comments
 (0)