ace-retro 0.16.2 → 0.16.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/handbook/workflow-instructions/retro/selfimprove.wf.md +1 -1
- data/lib/ace/retro/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 18a27826984e3770352683bb1af0ef48e209c39b8de1d46131ec87404b1c4e2c
|
|
4
|
+
data.tar.gz: d7bf655672bef558f267f6dfe8b0c8e18321f685858afb85f9833be70b931eb5
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1902f787bf76e5897399fdd4a0d008230b80c915728200afef28b13b0d8c4fbd15e98f644bf0652820cbcc81a20b579a04b26c6c8c36b536767bf2f90e48569f
|
|
7
|
+
data.tar.gz: 7d93ac1be8dc7d63dd05a210c7b54f4cefa748e120b9816b1c98c0430f8e2a0922c2c939a7d4f6657519e5859555dcfc7b5e16089dacc0d7c8948ddcafc7cdd2
|
data/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [0.16.3] - 2026-03-29
|
|
11
|
+
|
|
12
|
+
### Fixed
|
|
13
|
+
- `retro/selfimprove`: corrected the retro creation example to use the supported `standard` type plus `self-improvement` and `process-fix` tags instead of the unsupported `self-improvement` type flag.
|
|
14
|
+
|
|
10
15
|
## [0.16.2] - 2026-03-29
|
|
11
16
|
|
|
12
17
|
### Technical
|
|
@@ -174,7 +174,7 @@ After user approval:
|
|
|
174
174
|
3. **Record a retro** documenting the improvement:
|
|
175
175
|
|
|
176
176
|
```bash
|
|
177
|
-
ace-retro create "selfimprove-TOPIC" --type
|
|
177
|
+
ace-retro create "selfimprove-TOPIC" --type standard --tags self-improvement,process-fix
|
|
178
178
|
```
|
|
179
179
|
|
|
180
180
|
Populate the retro with the root cause analysis, the fix applied, and the expected impact.
|
data/lib/ace/retro/version.rb
CHANGED