rust-cli / human-panic

Panic messages for humans.
https://docs.rs/human-panic
Apache License 2.0
1.66k stars 65 forks source link

Bump toml and uuid #67

Closed MikailBag closed 4 years ago

MikailBag commented 4 years ago

This is 🙋 feature (?)

This PR bumps toml and uuid versions to reduce duplicates for downstream users

Checklist

Semver Changes

As far as I understand, these are private dependencies, so this PR does not bump major or minor version.

CreepySkeleton commented 4 years ago

As far as I know, semver takes "0.4.7" as "compatible to 0.4.7", which includes "0.5.0", doesn't it?

Correct for semver but the story is little bit different for cargo. Cargo takes pre-1.0.0 minor versions as (potentially) incompatible with each other, for example it won't pull 0.5.0 if your version requirement is ^0.4.

matthiasbeyer commented 4 years ago

ah, TIL. Thanks! So I'd approve for merging this and then of course we need a minor-version bump rather than a patch-version bump!