diff options
| author | Michelle Tilley <michelle@michelletilley.net> | 2026-04-24 14:41:07 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-04-24 14:41:07 -0700 |
| commit | 374d31db861df7d1df46add083798d770d0818a7 (patch) | |
| tree | 2055e20a6510daf3344167e2b254a3f36f589d1e /.atuin | |
| parent | perf: Reduce AI TUI rendering overhead for long conversations (#3447) (diff) | |
| download | atuin-374d31db861df7d1df46add083798d770d0818a7.zip | |
chore: Update to eye_declare 0.5.1 (#3449)
Diffstat (limited to '.atuin')
| -rw-r--r-- | .atuin/skills/release/SKILL.md | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/.atuin/skills/release/SKILL.md b/.atuin/skills/release/SKILL.md index e0172476..818f0e60 100644 --- a/.atuin/skills/release/SKILL.md +++ b/.atuin/skills/release/SKILL.md @@ -28,6 +28,8 @@ Verify these tools are installed: `git`, `gsed`, `cargo`, `gh`, `git-cliff`. Use `command -v` for each. If any are missing, report which ones and stop. +Remember to use `gsed`, or else macOS flags to regular `sed`, later in the workflow. + --- ## Step 2 — Determine Version @@ -78,8 +80,9 @@ ALL subsequent Bash commands run from `$WORKDIR`. 4. Show `git diff --stat` and the version-related lines from the diff: ```bash - git diff --unified=0 -- '*.toml' | grep -E '^\+.*version' | grep -v '^\+\+\+' + git diff --unified=0 -- '*.toml' | grep '^\+.*version' | grep -vF '+++' ``` + Remember to use macOS grep arguments on macOS systems. 5. Verify the workspace version was actually updated by re-reading it from `Cargo.toml`. |
