You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: tracking/bugfixes.md
+161Lines changed: 161 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1242,6 +1242,167 @@ This fix ensures proper alignment with the search missing operations feature des
1242
1242
1243
1243
---
1244
1244
1245
+
## [2025-09-11] Release Workflow Version Injection Fix
1246
+
1247
+
**Status**: Completed
1248
+
**Developer**: Assistant
1249
+
**Related Issues**: Release binaries showing incorrect version (v0.0.0-dev+f6598d7) instead of actual release version (v3.0.2)
1250
+
1251
+
### Summary
1252
+
Fixed critical issue where release workflow was building binaries with git-based development versions instead of the actual release version from semantic-release. The build job was running before semantic-release created tags, causing version detection to fail and produce development versions like `v0.0.0-dev+f6598d7` instead of proper release versions like `v3.0.2`.
1253
+
1254
+
### Tasks
1255
+
- [x] Investigate how version is currently being setin build process and semantic-release workflow
1256
+
- [x] Fix the build process to use proper release version instead of git-based detection
1257
+
- [x] Update semantic-release configuration to properly handle version injection
1258
+
- [x] Verify the fix works correctly for both development and release builds
1259
+
1260
+
### Files Modified
1261
+
- `.releaserc.json` - Added @semantic-release/exec plugin to run custom build script with version
0 commit comments