From 09f8243f4b648a700a213abf075e0a7d6a080c92 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 7 Jan 2026 14:31:43 +0000 Subject: [PATCH] Version Packages --- .changeset/fix-option-parsing.md | 9 --------- CHANGELOG.md | 10 ++++++++++ package.json | 2 +- src/Cli.ts | 2 +- 4 files changed, 12 insertions(+), 11 deletions(-) delete mode 100644 .changeset/fix-option-parsing.md diff --git a/.changeset/fix-option-parsing.md b/.changeset/fix-option-parsing.md deleted file mode 100644 index 5b11804..0000000 --- a/.changeset/fix-option-parsing.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -"@dtechvision/indexingco-cli": patch ---- - -Fixed CLI argument parsing for commands with many options - -- Fixed a bug where option values (e.g., `--transformation my-value`) were incorrectly detected as positional arguments, causing a misleading hint about argument ordering -- Unified `pipelines create` to use positional `name` argument (at the end) instead of `--name` option, matching the pattern used by `filters create` and `transformations create` -- Added CLAUDE.md with development guidance for future CLI option additions diff --git a/CHANGELOG.md b/CHANGELOG.md index dc7f34f..1d8b4fe 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,15 @@ # @dtechvision/indexingco-cli +## 0.0.7 + +### Patch Changes + +- [#4](https://github.com/dtechvision/indexing-co-cli/pull/4) [`36ba4b8`](https://github.com/dtechvision/indexing-co-cli/commit/36ba4b849e2389cb8fc1447536d774abd2dd3134) Thanks [@SamuelLHuber](https://github.com/SamuelLHuber)! - Fixed CLI argument parsing for commands with many options + + - Fixed a bug where option values (e.g., `--transformation my-value`) were incorrectly detected as positional arguments, causing a misleading hint about argument ordering + - Unified `pipelines create` to use positional `name` argument (at the end) instead of `--name` option, matching the pattern used by `filters create` and `transformations create` + - Added CLAUDE.md with development guidance for future CLI option additions + ## 0.0.6 ### Patch Changes diff --git a/package.json b/package.json index 846f074..9ce3167 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@dtechvision/indexingco-cli", - "version": "0.0.6", + "version": "0.0.7", "type": "module", "packageManager": "bun@1.1.34", "license": "MIT", diff --git a/src/Cli.ts b/src/Cli.ts index 2d568e1..8740272 100644 --- a/src/Cli.ts +++ b/src/Cli.ts @@ -8,5 +8,5 @@ const cli = Command.make("indexingco").pipe( export const run = Command.run(cli, { name: "Indexing CLI", - version: "0.0.6" + version: "0.0.7" })