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: CHANGELOG.md
+18Lines changed: 18 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,6 +6,24 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
6
6
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
8
8
9
+
## [0.2.0] - 2026-03-24
10
+
11
+
### Added
12
+
-`--skip` CLI flag to skip pipeline steps from the command line (comma-separated, e.g. `--skip publish,test`), merged with config `skip` list with deduplication
13
+
-`--list-steps` CLI flag to show detailed descriptions of all pipeline steps
14
+
-`Help()` method on `Step` interface providing per-step documentation (what it does, per-language commands, prerequisites, hooks, destructive warnings)
15
+
- Available steps summary in `--help` output, auto-generated from step definitions
16
+
-`StepInfo` / `StepInfoList` for programmatic step metadata access
17
+
18
+
### Changed
19
+
- Skip message in pipeline output changed from "skipped by config" to "skipped" (source-agnostic)
20
+
-`Config.Merge()` now accepts `cliSkip` parameter for CLI skip merge
21
+
- Consolidated step list into single `buildAllSteps()` function (was duplicated 3x)
22
+
- Help text and step validation now derived from step definitions (single source of truth)
23
+
24
+
### Fixed
25
+
-`StepNames` in `pipeline/step.go` was missing `"verify"` step
0 commit comments