Skip to content

Commit b998f4d

Browse files
chore(release): 0.2.0-dev.2 [skip ci]
## [0.2.0-dev.2](v0.2.0-dev.1...v0.2.0-dev.2) (2025-09-15) ### Features * add dataclass architecture for test results ([5fa1983](5fa1983)) * add positional path argument support to CLI ([5d3a6b2](5d3a6b2)) * enhance _ErrorHolder error messages with actionable details ([1a4ea48](1a4ea48)) * implement EnhancedOutputFormatter with observer integration ([510f016](510f016)) * implement functional file output for discovery mode ([143bc6d](143bc6d)) * implement Observer + Strategy pattern architecture ([c5d767d](c5d767d)) * implement resolved CLI argument system for file output ([087cc64](087cc64)) * implement ThreadedFileWriter with ordered processing ([d2d1b9f](d2d1b9f)) * integrate file output system with core test runner ([467b604](467b604)) * standardize Unicode symbol handling with ASCII fallback ([5431799](5431799)) ### Bug Fixes * achieve 100% test pass rate - resolve final 3 test failures ([60a9af9](60a9af9)) * handle unittest _ErrorHolder objects gracefully ([e8b5316](e8b5316)) * prevent duplicate output in file logging ([02f3b22](02f3b22)) * resolve critical production issues in wobble framework ([1b2b526](1b2b526)) * resolve critical threading deadlock in file I/O system ([a4ddd9c](a4ddd9c)) * resolve test compatibility issues for Python 3.12+ ([54a1da1](54a1da1)) * resolve threading deadlock in ThreadedFileWriter ([3751433](3751433)) ### Documentation * add comprehensive file output section to CLI reference ([2ddc26b](2ddc26b)) * update documentation for file output feature across all guides ([80d1116](80d1116)) ### Code Refactoring * remove unused import in enhanced_output.py ([2108c3d](2108c3d)) * standardize mock test class naming in enhanced output tests ([57fbb88](57fbb88))
1 parent cc1f0be commit b998f4d

File tree

1 file changed

+39
-0
lines changed

1 file changed

+39
-0
lines changed

docs/CHANGELOG.md

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,42 @@
1+
## [0.2.0-dev.2](https://github.com/CrackingShells/Wobble/compare/v0.2.0-dev.1...v0.2.0-dev.2) (2025-09-15)
2+
3+
4+
### Features
5+
6+
* add dataclass architecture for test results ([5fa1983](https://github.com/CrackingShells/Wobble/commit/5fa1983f02016462e687dd246b69f39629b57e5f))
7+
* add positional path argument support to CLI ([5d3a6b2](https://github.com/CrackingShells/Wobble/commit/5d3a6b2180664e6b76690a6cd78f7b5d3620821f))
8+
* enhance _ErrorHolder error messages with actionable details ([1a4ea48](https://github.com/CrackingShells/Wobble/commit/1a4ea486fcd156aef75ffae20bc9537da1f72e57))
9+
* implement EnhancedOutputFormatter with observer integration ([510f016](https://github.com/CrackingShells/Wobble/commit/510f0166a1b0754471409db00326526546f7a81e))
10+
* implement functional file output for discovery mode ([143bc6d](https://github.com/CrackingShells/Wobble/commit/143bc6d3b9d11032560b7241af3800b9b674fd51))
11+
* implement Observer + Strategy pattern architecture ([c5d767d](https://github.com/CrackingShells/Wobble/commit/c5d767d5a265de9ec8f2521cb12d40c2c448feb4))
12+
* implement resolved CLI argument system for file output ([087cc64](https://github.com/CrackingShells/Wobble/commit/087cc64285c932c089353616550d54411d00d87d))
13+
* implement ThreadedFileWriter with ordered processing ([d2d1b9f](https://github.com/CrackingShells/Wobble/commit/d2d1b9f11e5a949f905ecffd58bb2055e075456e))
14+
* integrate file output system with core test runner ([467b604](https://github.com/CrackingShells/Wobble/commit/467b6049873e3d00a1f807ed3b9306eff6bf4035))
15+
* standardize Unicode symbol handling with ASCII fallback ([5431799](https://github.com/CrackingShells/Wobble/commit/5431799b48762546e025420f1c769fbd186961dd))
16+
17+
18+
### Bug Fixes
19+
20+
* achieve 100% test pass rate - resolve final 3 test failures ([60a9af9](https://github.com/CrackingShells/Wobble/commit/60a9af9816f004fae1b7dd4d1d5ee4a7f67cbab3))
21+
* handle unittest _ErrorHolder objects gracefully ([e8b5316](https://github.com/CrackingShells/Wobble/commit/e8b531643aa3e4520a47a1ca875b84a0b4b8e6b4))
22+
* prevent duplicate output in file logging ([02f3b22](https://github.com/CrackingShells/Wobble/commit/02f3b2227a4a6c57aefd72a33a608ddbd56db730))
23+
* resolve critical production issues in wobble framework ([1b2b526](https://github.com/CrackingShells/Wobble/commit/1b2b526d5348c712a00cd40171eb32c56dfbb613))
24+
* resolve critical threading deadlock in file I/O system ([a4ddd9c](https://github.com/CrackingShells/Wobble/commit/a4ddd9cf4b73d8ced4d1b6bed0ddcc6241954148))
25+
* resolve test compatibility issues for Python 3.12+ ([54a1da1](https://github.com/CrackingShells/Wobble/commit/54a1da1dc3b26ce7ec1d316a9d2f401e4db8b7a6))
26+
* resolve threading deadlock in ThreadedFileWriter ([3751433](https://github.com/CrackingShells/Wobble/commit/3751433ae8f00dc9d79fff9580a4d7406070d865))
27+
28+
29+
### Documentation
30+
31+
* add comprehensive file output section to CLI reference ([2ddc26b](https://github.com/CrackingShells/Wobble/commit/2ddc26b5ce3c38fb9e9affcc552e9809d557feaa))
32+
* update documentation for file output feature across all guides ([80d1116](https://github.com/CrackingShells/Wobble/commit/80d11162c84a55d95b1f1156a332efd92381a091))
33+
34+
35+
### Code Refactoring
36+
37+
* remove unused import in enhanced_output.py ([2108c3d](https://github.com/CrackingShells/Wobble/commit/2108c3d3114fa1e96fe686a9e819a3106097768c))
38+
* standardize mock test class naming in enhanced output tests ([57fbb88](https://github.com/CrackingShells/Wobble/commit/57fbb88eac2206a7581592335028c87c8106fc38))
39+
140
## [0.2.0-dev.1](https://github.com/CrackingShells/Wobble/compare/v0.1.0...v0.2.0-dev.1) (2025-09-10)
241

342

0 commit comments

Comments
 (0)