Compare commits

...

2 Commits

Author SHA1 Message Date
mguschin
2d86df749b chore: release v0.1.1 2026-03-23 14:57:12 +03:00
mguschin
e78b3474cd fix: fix shell substitution in release-new command context 2026-03-23 14:56:36 +03:00
2 changed files with 11 additions and 1 deletions

View File

@@ -7,7 +7,7 @@ description: Create a new semver release. Usage: /release-new [major|minor|patch
- Current latest tag: !`git describe --tags --abbrev=0 2>/dev/null || echo "none"` - Current latest tag: !`git describe --tags --abbrev=0 2>/dev/null || echo "none"`
- Current branch: !`git branch --show-current` - Current branch: !`git branch --show-current`
- Unreleased commits: !`git log $(git describe --tags --abbrev=0 2>/dev/null || echo "")..HEAD --oneline 2>/dev/null || git log --oneline` - Unreleased commits: !`git log --oneline -20`
## Your task ## Your task

View File

@@ -2,6 +2,12 @@
All notable changes to this project will be documented in this file. All notable changes to this project will be documented in this file.
## [0.1.1] - 2026-03-23
### Bug Fixes
- Fix: fix shell substitution in release-new command context
## [0.1.0] - 2026-03-23 ## [0.1.0] - 2026-03-23
### Bug Fixes ### Bug Fixes
@@ -82,4 +88,8 @@ Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
### Miscellaneous Tasks
- Chore: release v0.1.0