@@ -9,6 +9,51 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
99
1010---
1111
12+ ## [ 0.6.5] - 2025-11-15
13+
14+ ### 🐛 Bug Fixes - Critical
15+
16+ ** Fixed ` metaspec contribute ` Registration Failure**
17+
18+ Fixed a critical bug that completely broke the speckit registration workflow.
19+
20+ ** Problem** :
21+ - Used incorrect GitHub Issue template name: ` register.yml `
22+ - Correct template name is: ` register-speckit.yml `
23+ - Resulted in empty Issue body, bot couldn't process registration
24+ - All registration attempts failed
25+
26+ ** Impact** : 🔴 Critical
27+ - Severity: High - Broke entire registration workflow
28+ - Affected: All users attempting to register speckits
29+ - Duration: Since v0.6.4 release
30+
31+ ** Fix** :
32+ - Updated template name: ` register.yml ` → ` register-speckit.yml `
33+ - Removed ` title ` URL parameter (handled by GitHub Issue Forms)
34+ - Updated URL generation to match GitHub Issue Forms API
35+ - Updated tests to verify correct template name
36+
37+ ** Verification** :
38+ ``` bash
39+ # Before (v0.6.4) - BROKEN
40+ https://github.com/.../issues/new? template=register.yml& ...
41+ # → Empty Issue body, bot couldn't process
42+
43+ # After (v0.6.5) - FIXED
44+ https://github.com/.../issues/new? template=register-speckit.yml& repository=...
45+ # → Repository field pre-filled, bot processes automatically
46+ ```
47+
48+ ** References** :
49+ - Bug Report: marketing-spec-kit registration failure
50+ - Broken Example: awesome-spec-kits #6 (empty body)
51+ - Working Template: ` .github/ISSUE_TEMPLATE/register-speckit.yml `
52+
53+ ** All 156 tests passing.**
54+
55+ ---
56+
1257## [ 0.6.4] - 2025-11-15
1358
1459### 🎉 Changed - Major UX Improvement
0 commit comments