- Bug fix (non-breaking change that fixes an issue)
- New feature (non-breaking change that adds functionality)
- Breaking change (fix or feature that would cause existing functionality to change)
- Documentation update
- Standard library addition
- Performance improvement
- Refactoring (no functional changes)
- All existing tests pass (
pytest tests/ -v) - New tests added for this change
- Manual testing done (describe below)
Before:
// ...
After:
// ...
- My code follows the project's coding style
- I have added/updated docstrings and comments
- I have updated documentation if needed
- My changes generate no new warnings
- I have added tests that prove my fix/feature works