bump-version version: sed -i 's/^version = ".*"/version = "{{ version }}"/' ./Cargo.toml generate-files: SKIM_DEFAULT_OPTIONS= cargo run -- --man > ./man/man1/sk.1 SKIM_DEFAULT_OPTIONS= cargo run -- --shell bash > ./shell/completion.bash SKIM_DEFAULT_OPTIONS= cargo run -- --shell zsh > ./shell/completion.zsh SKIM_DEFAULT_OPTIONS= cargo run -- --shell fish > ./shell/completion.fish SKIM_DEFAULT_OPTIONS= cargo run -- --shell nushell > ./shell/completion.nu changelog version: git cliff -p CHANGELOG.md -t 'v{{ version }}' -u release version: (bump-version version) generate-files (changelog version) test cargo generate-lockfile echo '{{ version }}' > shell/version.txt git add CHANGELOG.md Cargo.lock Cargo.toml man/ shell/ git commit -m 'release: v{{ version }}' git tag 'v{{ version }}' read -p "Press any key to confirm pushing tag v{{ version }}" git push git push --tags auto-release: git switch master git pull just release $(git cliff --bumped-version | sed 's/v\(.*\)/\1/') test target="": cargo test --doc cargo nextest run {{ target }} tmux kill-session -t skim_e2e