Critical Bugfix Release
This release fixes a critical version inconsistency bug that was breaking downstream packages.
Bugfix
- Fix version mismatch:
__init__.pynow imports__version__dynamically from__version__.py - Remove hardcoded version: Removed incorrect
__version__ = '0.2.0'from__init__.py - Bump version: Updated to 0.4.1 in both
pyproject.tomland__version__.py
Impact
Before this fix:
python -c "import excel_to_sql; print(excel_to_sql.__version__)"→0.2.0❌pip show excel-to-sql→0.4.0✅
After this fix:
python -c "import excel_to_sql; print(excel_to_sql.__version__)"→0.4.1✅pip show excel-to-sql→0.4.1✅
Fixes
- Fixes #47: Version Inconsistency Bug
- Unblocks wareflow-analysis releases
- Enables correct version checks in downstream packages
Installation
pip install excel-to-sql==0.4.1Verification
python -c "import excel_to_sql; assert excel_to_sql.__version__ >= '0.3.0'"