https://dataresearchcenter.org/library
Current version: 2025.6.4.0
This project uses Calendar Versioning (CalVer) with the pattern:
YYYY.MM.DD.PATCH
YYYY- Full year (e.g., 2025)MM- Month (1-12, no leading zero)DD- Day (1-31, no leading zero)PATCH- Patch number for same-day releases (starts at 0)
Example: 2025.6.4.0 = June 4th, 2025, first release of the day.
The project uses bumpver configured in pyproject.toml.
# Bump to current date (resets PATCH to 0)
bumpver update
# Bump only the PATCH number (for multiple releases on same day)
bumpver update --patch
# Preview changes without applying them
bumpver update --dry
# Preview patch bump without applying
bumpver update --patch --dryWhen you run bumpver update, it will:
- Update the version in
pyproject.tomlandREADME.md - Create a git commit with message:
🔖 bump version X -> Y - Create a git tag with the new version
- Push the commit and tag to the remote repository