Skip to content

Commit 4d0c9a9

Browse files
committed
Bump version to 1.7.0
1 parent 488fd6e commit 4d0c9a9

File tree

4 files changed

+10
-4
lines changed

4 files changed

+10
-4
lines changed

CHANGELOG.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
88

99
## [Unreleased]
1010

11+
- TBD
12+
13+
14+
## [1.7.0] - 2025-11-10
15+
1116
### Added
1217

1318
- `get_caller()` function in coverage.py
@@ -170,7 +175,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
170175
Initial release; see [v1.0 HISTORY.md](https://github.com/JMU-CS/jmu_pytest_utils/blob/v1.0/HISTORY.md)
171176

172177

173-
[unreleased]: https://github.com/JMU-CS/jmu_pytest_utils/compare/v1.6.1...HEAD
178+
[unreleased]: https://github.com/JMU-CS/jmu_pytest_utils/compare/v1.7.0...HEAD
179+
[1.7.0]: https://github.com/JMU-CS/jmu_pytest_utils/compare/v1.6.1...v1.7.0
174180
[1.6.1]: https://github.com/JMU-CS/jmu_pytest_utils/compare/v1.6.0...v1.6.1
175181
[1.6.0]: https://github.com/JMU-CS/jmu_pytest_utils/compare/v1.5.0...v1.6.0
176182
[1.5.0]: https://github.com/JMU-CS/jmu_pytest_utils/compare/v1.4.0...v1.5.0

jmu_pytest_utils/plugin.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ def pytest_sessionstart(session: pytest.Session) -> None:
5050
def pytest_exception_interact(
5151
node: pytest.Item | pytest.Collector,
5252
call: pytest.CallInfo[Any],
53-
report: pytest.CollectReport | pytest.TestReport
53+
report: pytest.CollectReport | pytest.TestReport,
5454
) -> None:
5555
"""Report errors during collection."""
5656

jmu_pytest_utils/template/setup.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ source .venv/bin/activate
1616
pip install --upgrade pip
1717

1818
# Install libraries
19-
pip install git+https://github.com/JMU-CS/jmu_pytest_utils.git@v1.6.1
19+
pip install git+https://github.com/JMU-CS/jmu_pytest_utils.git@v1.7.0
2020
if [ -f "requirements.txt" ]; then
2121
pip install -r requirements.txt
2222
fi

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
setup(
66
name="jmu_pytest_utils",
7-
version="1.6.1",
7+
version="1.7.0",
88
description="pytest plugin for Gradescope autograders",
99
author="Chris Mayfield",
1010
author_email="[email protected]",

0 commit comments

Comments
 (0)