diff --git a/.changeset/add-tag-bump-command.md b/.changeset/add-tag-bump-command.md deleted file mode 100644 index 1d79b9f..0000000 --- a/.changeset/add-tag-bump-command.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -"@ensemble-edge/edgit": patch ---- - -Add `edgit tag bump` command for automated semantic version bumping - -- New `edgit tag bump ` command -- Automatically finds the latest version tag and creates a bumped version -- Supports optional `--ref ` to specify the Git ref for the new tag -- Handles edge cases: components with no existing tags start at v0.0.1 -- Full semver support including prerelease increments (v1.0.0-alpha.1 → v1.0.0-alpha.2) diff --git a/CHANGELOG.md b/CHANGELOG.md index e70f8d9..a51825b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,16 @@ # @ensemble-edge/edgit +## 0.5.1 + +### Patch Changes + +- e1d5905: Add `edgit tag bump` command for automated semantic version bumping + - New `edgit tag bump ` command + - Automatically finds the latest version tag and creates a bumped version + - Supports optional `--ref ` to specify the Git ref for the new tag + - Handles edge cases: components with no existing tags start at v0.0.1 + - Full semver support including prerelease increments (v1.0.0-alpha.1 → v1.0.0-alpha.2) + ## 0.5.0 ### Minor Changes diff --git a/package.json b/package.json index e03cc19..82a2350 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@ensemble-edge/edgit", - "version": "0.5.0", + "version": "0.5.1", "type": "module", "description": "Git tag-based versioning for AI components and agents. Independent versioning for prompts, configs, queries, scripts, and agent definitions.", "main": "dist/lib/index.js",