21 releases

0.3.19-alpha May 25, 2025
0.3.18-alpha May 25, 2025
0.3.16-dev Feb 25, 2025
0.3.12-alpha Jan 5, 2024
0.1.5-alpha Nov 30, 2021

#873 in Command line utilities

Download history 274/week @ 2025-02-19 224/week @ 2025-02-26 8/week @ 2025-03-05 8/week @ 2025-05-07 5/week @ 2025-05-14 398/week @ 2025-05-21 72/week @ 2025-05-28

483 downloads per month

MIT license

41KB
979 lines

omr-bumper

A tool to automate version bumping and release preparation for Rust projects.

Installation

Using cargo-binstall

The easiest way to install omr-bumper is with cargo-binstall:

cargo binstall omr-bumper

Using cargo

cargo install omr-bumper

About

Does all the necessary preparation to have GitHub build a release.

  • Prepare release
    • Checks workspace/git is clean
    • Removes -dev from version, and replaces by alpha/beta/[none]
    • Update Cargo.lock cargo update --workspace --dry-run --verbose
    • Commits Cargo.toml (and other files as needed)
    • Pushes to git
    • Tags the release
    • Pushes the tag
  • Prepare to continue with development
    • Bumps the local version patch/minor/major
    • Commits Cargo.toml
    • Pushes to git

CI/CD

The project uses GitHub Actions workflows for:

  • Publishing to crates.io on tag push
  • Building binaries for multiple platforms (Linux, macOS, Windows)
  • Creating GitHub releases with change logs
  • Generating cargo-binstall metadata

Note

"revspec 'origin/HEAD' not found"

The git interface is pretty complex. For them moment we use origin/HEAD to get the "correct" refspec. If you didn't create your local repository by cloning this will not exist. You can create it via git symbolic-ref refs/remotes/origin/HEAD refs/remotes/origin/master. This will be fixed in a future release.

You can verify origin/HEAD exists via git show-ref.

Dependencies

~97MB
~2M SLoC