argsbarg 2.0.1 → 2.1.0
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.
- package/CHANGELOG.md +5 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [2.1.0] - 2026-06-20
|
|
11
|
+
|
|
12
|
+
|
|
10
13
|
## [2.0.1] - 2026-06-20
|
|
11
14
|
|
|
12
15
|
### Removed
|
|
@@ -177,7 +180,8 @@ const cli = { ... } satisfies CliProgram; // or : CliProgram
|
|
|
177
180
|
- Migrate schemas: rename every `children` property to **`commands`**; move positional definitions to **`CliPositional`** objects on `positionals` and strip `positional` / `argMin` / `argMax` from flag definitions under `options` (flags only carry `name`, `description`, `kind`, and optional `shortName`).
|
|
178
181
|
- Imports: use `CliPositional` where needed; replace `CliOptionDef` with `CliOption` or `CliPositional` as appropriate.
|
|
179
182
|
|
|
180
|
-
[Unreleased]: https://github.com/bdombro/bun-argsbarg/compare/v2.0
|
|
183
|
+
[Unreleased]: https://github.com/bdombro/bun-argsbarg/compare/v2.1.0...HEAD
|
|
184
|
+
[2.1.0]: https://github.com/bdombro/bun-argsbarg/releases/tag/v2.1.0
|
|
181
185
|
[2.0.1]: https://github.com/bdombro/bun-argsbarg/releases/tag/v2.0.1
|
|
182
186
|
[2.0.0]: https://github.com/bdombro/bun-argsbarg/releases/tag/v2.0.0
|
|
183
187
|
[1.5.0]: https://github.com/bdombro/bun-argsbarg/releases/tag/v1.5.0
|