Skip to content

Commit 0b9558d

Browse files
committed
chore: bump version to 0.8.1 to fix version mismatch in 0.8.0
v0.8.0 on PyPI has __version__ = '0.7.3' due to upload timing. v0.8.1 fixes this inconsistency.
1 parent 0759898 commit 0b9558d

File tree

3 files changed

+30
-3
lines changed

3 files changed

+30
-3
lines changed

CHANGELOG.md

Lines changed: 28 additions & 1 deletion
Original file line numberDiff line numberDiff 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

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "meta-spec"
3-
version = "0.8.0"
3+
version = "0.8.1"
44
description = "Meta-specification framework for generating Spec-Driven X (SD-X) toolkits for AI agents"
55
readme = "README.md"
66
requires-python = ">=3.11"

src/metaspec/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
from YAML definitions.
66
"""
77

8-
__version__ = "0.8.0"
8+
__version__ = "0.8.1"
99

1010
__all__ = ["__version__"]
1111

0 commit comments

Comments
 (0)