From 1e1137f0b66930eeb44c300072233fc2c89810f6 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 27 Mar 2026 03:41:08 +0000 Subject: [PATCH] chore(release): version packages --- .changeset/plugin-system.md | 5 ----- .changeset/remove-bare-prompt.md | 7 ------- CHANGELOG.md | 10 ++++++++++ Cargo.toml | 2 +- package.json | 2 +- 5 files changed, 12 insertions(+), 14 deletions(-) delete mode 100644 .changeset/plugin-system.md delete mode 100644 .changeset/remove-bare-prompt.md diff --git a/.changeset/plugin-system.md b/.changeset/plugin-system.md deleted file mode 100644 index e72d9cb..0000000 --- a/.changeset/plugin-system.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@omnidotdev/cli": minor ---- - -Add ecosystem plugin system with three plugin types (bin, api, launch), plugin discovery from config directory and PATH, and CLI routing via external_subcommand diff --git a/.changeset/remove-bare-prompt.md b/.changeset/remove-bare-prompt.md deleted file mode 100644 index ee2b5da..0000000 --- a/.changeset/remove-bare-prompt.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -"@omnidotdev/cli": minor ---- - -Remove the standalone `omni shell` subcommand in favor of a unified agent interface. Natural language shell tasks are now handled by `omni agent`, which routes simple shell commands through its existing tool system. This aligns with industry best practice (single agentic entry point) and reduces user-facing complexity. - -Breaking change: `omni shell "list files"` is now `omni agent "list files"` (or `omni a "list files"`) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4a92069..35e40ce 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,15 @@ # Changelog +## 0.7.0 + +### Minor Changes + +- [#30](https://github.com/omnidotdev/cli/pull/30) [`ef1cb6a`](https://github.com/omnidotdev/cli/commit/ef1cb6a1132a78070b2d709dde29f41887ec9c7a) Thanks [@coopbri](https://github.com/coopbri)! - Add ecosystem plugin system with three plugin types (bin, api, launch), plugin discovery from config directory and PATH, and CLI routing via external_subcommand + +- [#31](https://github.com/omnidotdev/cli/pull/31) [`b7b0321`](https://github.com/omnidotdev/cli/commit/b7b03219915cdb83355b1b8217531c0e6d1cef86) Thanks [@coopbri](https://github.com/coopbri)! - Remove the standalone `omni shell` subcommand in favor of a unified agent interface. Natural language shell tasks are now handled by `omni agent`, which routes simple shell commands through its existing tool system. This aligns with industry best practice (single agentic entry point) and reduces user-facing complexity. + + Breaking change: `omni shell "list files"` is now `omni agent "list files"` (or `omni a "list files"`) + ## 0.6.0 ### Minor Changes diff --git a/Cargo.toml b/Cargo.toml index 930414c..a8e390d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,7 +4,7 @@ resolver = "2" [package] name = "omnidotdev-cli" -version = "0.6.0" +version = "0.7.0" edition = "2024" rust-version = "1.86" authors = ["Omni "] diff --git a/package.json b/package.json index 5e78bd5..20f7426 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@omnidotdev/cli", - "version": "0.6.0", + "version": "0.7.0", "private": true, "description": "Agentic CLI for the Omni ecosystem", "type": "module",