cargo-uv 0.0.2

A simple Cargo tool for updating the version in your project.
cargo-uv-0.0.2 is not a library.
Visit the last successful build: cargo-uv-1.0.0-rc.2

Cargo Update Version

Usage

  1. Bump version 1 patch i.e. 0.1.0 -> 0.1.1

    cargo update_version 
    
    
  2. Bump version 1 minor i.e. 0.1.3 -> 0.2.0

    cargo update_version -m
    
    
  3. Bump version 1 major i.e. 0.2.3 -> 1.0.0

    cargo update_version -M
    
    
  4. Set version

    cargo update_version -s 0.2.1
    
    
  5. Bump version 1 patch and set git tag i.e. 0.1.0 -> 0.1.1

    cargo update_version -t