aip-cli 0.8.15

AI profile manager for Claude Code and Codex CLI.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# aip

## Release Procedure

Trigger: user says `release`

1. Check commits since last release to determine version bump (feat → minor, fix → patch)
2. Update `version` in `Cargo.toml` (Cargo.lock is updated automatically)
3. Run `cargo check` to verify
4. Commit with message `chore: release <version>`
5. Without waiting for confirmation:
   - `git push`
   - `git tag v<version>` and push the tag
   - `cargo publish`
   - `gh release create v<version>` with changelog from commits since last release