cargo-uv 0.0.2

A simple Cargo tool for updating the version in your project.
# Cargo Update Version


## Usage


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

    ```bash
    cargo update_version 

    ```

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

    ```bash
    cargo update_version -m

    ```

3. Bump version 1 major i.e. `0.2.3 -> 1.0.0`

    ```bash
    cargo update_version -M

    ```

4. Set version

    ```bash
    cargo update_version -s 0.2.1

    ```

5. Bump version 1 patch and set git tag i.e. `0.1.0 -> 0.1.1`

    ```bash
    cargo update_version -t

    ```