File tree Expand file tree Collapse file tree 3 files changed +30
-3
lines changed Expand file tree Collapse file tree 3 files changed +30
-3
lines changed Original file line number Diff line number Diff line change @@ -7,7 +7,34 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77
88## [ Unreleased]
99
10- ### 🔄 v0.8.0 - Workflow Completeness Enhancement
10+ ---
11+
12+ ## [ 0.8.1] - 2025-11-17
13+
14+ ### 🐛 Bugfix - Version Number Consistency
15+
16+ ** Fix version number mismatch in v0.8.0 release**
17+
18+ #### Issue
19+ v0.8.0 was uploaded to PyPI with inconsistent version numbers:
20+ - ` pyproject.toml ` : 0.8.0 ✅
21+ - ` __init__.py ` ` __version__ ` : 0.7.3 ❌
22+
23+ This caused ` import metaspec; metaspec.__version__ ` to return ` "0.7.3" ` instead of ` "0.8.0" ` .
24+
25+ #### Fix
26+ - Updated ` __init__.py ` to ` __version__ = "0.8.1" `
27+ - All version references now consistent
28+
29+ ** Note** : v0.8.0 on PyPI should not be used. Please upgrade to v0.8.1.
30+
31+ ---
32+
33+ ## [ 0.8.0] - 2025-11-17 ⚠️ DEPRECATED
34+
35+ ** ⚠️ WARNING** : This version has a bug where ` __version__ ` returns ` "0.7.3" ` . Please use v0.8.1 instead.
36+
37+ ### 🔄 Workflow Completeness Enhancement
1138
1239** Date** : 2025-11-17
1340** Focus** : Clarify two types of workflows and eliminate project-specific examples
Original file line number Diff line number Diff line change 11[project ]
22name = " meta-spec"
3- version = " 0.8.0 "
3+ version = " 0.8.1 "
44description = " Meta-specification framework for generating Spec-Driven X (SD-X) toolkits for AI agents"
55readme = " README.md"
66requires-python = " >=3.11"
Original file line number Diff line number Diff line change 55from YAML definitions.
66"""
77
8- __version__ = "0.8.0 "
8+ __version__ = "0.8.1 "
99
1010__all__ = ["__version__" ]
1111
You can’t perform that action at this time.
0 commit comments