Bump version of NNCF
Context
- File Path:
src/nncf/version.py - Variable Name:
__version__ - Format: Standard Semantic Versioning (
"Major.Minor.Patch")
Execution Logic
- Read the current version from
src/nncf/version.py(pattern:__version__ = "X.Y.Z") - Parse Major, Minor, and Patch components
- Increment based on user intent:
- Major: increment Major, reset Minor and Patch to 0
- Minor (default): increment Minor, reset Patch to 0
- Patch: increment Patch only
- Update
__version__with new version string in double quotes - Preserve all other content in the file