Skip to content

v0.4.1: Fix Version Inconsistency

Latest

Choose a tag to compare

@codewizdave codewizdave released this 26 Jan 12:02
· 1 commit to main since this release

Critical Bugfix Release

This release fixes a critical version inconsistency bug that was breaking downstream packages.

Bugfix

  • Fix version mismatch: __init__.py now 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.toml and __version__.py

Impact

Before this fix:

  • python -c "import excel_to_sql; print(excel_to_sql.__version__)"0.2.0
  • pip show excel-to-sql0.4.0

After this fix:

  • python -c "import excel_to_sql; print(excel_to_sql.__version__)"0.4.1
  • pip show excel-to-sql0.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.1

Verification

python -c "import excel_to_sql; assert excel_to_sql.__version__ >= '0.3.0'"