diff options
| author | Michelle Tilley <michelle@michelletilley.net> | 2026-04-23 20:40:12 -0700 |
|---|---|---|
| committer | Michelle Tilley <michelle@michelletilley.net> | 2026-04-23 21:01:12 -0700 |
| commit | 0b7503a8cd4f9ba6ce45769a5e25eb05b98129c2 (patch) | |
| tree | bd243faac19e27f0acd66139e2f3e9b7f17ec67d | |
| parent | perf: Reduce AI TUI rendering overhead for long conversations (#3447) (diff) | |
| download | atuin-0b7503a8cd4f9ba6ce45769a5e25eb05b98129c2.zip | |
Tweak release skill
| -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`. |
