tokio-serial
tokio-serial copied to clipboard
5.0.4 changes
Hey @estokes. I was just looking to see what changed in 5.0.3 -> 5.0.4 and it looks like all you did was bump mio-serial
from 5.0.2 to 5.0.3?
I might be missing something, but if nothing was added in mio-serial 5.0.4 that tokio-serial requires, users will pick up this patch release automatically, no?
[dependencies.mio-serial]
version = "5.0.2"
The dependency above means >= 5.0.2. Users will automatically bump to mio-serial 5.0.3 if they run cargo update
.
In general, you want your cargo.toml to depend on the minimum version of a crate that is API compatible. If people are following semver, this hopefully means that you never have depend on anything other than major or minor version numbers.
Am I missing something?