Skip to content

Commit b0c68b1

Browse files
committed
Bump version to 1.5.0
1 parent 00cbb31 commit b0c68b1

File tree

3 files changed

+10
-4
lines changed

3 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.5.0] - 2025-10-10
15+
1116
### Added
1217

1318
- run postsetup.sh at the end of setup.sh (#11)
@@ -123,7 +128,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
123128
Initial release; see [v1.0 HISTORY.md](https://github.com/JMU-CS/jmu_pytest_utils/blob/v1.0/HISTORY.md)
124129

125130

126-
[unreleased]: https://github.com/JMU-CS/jmu_pytest_utils/compare/v1.4.0...HEAD
131+
[unreleased]: https://github.com/JMU-CS/jmu_pytest_utils/compare/v1.5.0...HEAD
132+
[1.5.0]: https://github.com/JMU-CS/jmu_pytest_utils/compare/v1.4.0...v1.5.0
127133
[1.4.0]: https://github.com/JMU-CS/jmu_pytest_utils/compare/v1.3.0...v1.4.0
128134
[1.3.0]: https://github.com/JMU-CS/jmu_pytest_utils/compare/v1.2.1...v1.3.0
129135
[1.2.1]: https://github.com/JMU-CS/jmu_pytest_utils/compare/v1.2.0...v1.2.1

jmu_pytest_utils/template/setup.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,12 @@ 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.4.0
19+
pip install git+https://github.com/JMU-CS/jmu_pytest_utils.git@v1.5.0
2020
if [ -f "requirements.txt" ]; then
2121
pip install -r requirements.txt
2222
fi
2323

2424
# Additional steps
25-
if [[ -f postsetup.sh ]]; then
25+
if [ -f "postsetup.sh" ]; then
2626
source postsetup.sh
2727
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.4.0",
7+
version="1.5.0",
88
description="pytest plugin for Gradescope autograders",
99
author="Chris Mayfield",
1010
author_email="[email protected]",

0 commit comments

Comments
 (0)