"Changing the license of an open source crate is an incompatible change: users of your crate who have strict restrictions on what licenses are acceptable may be broken by the change. Consider the license to be part of your API."
Current situation:
license = "Unlicense OR MIT OR Apache-2.0" (Cargo.toml)
version = "1.0.0+doc" (Cargo.toml)
There is NO licence file for Unlicense.
There is NO mention of Unlicense in the README.
New situation:
license = "MIT OR Apache-2.0" (Cargo.toml)
version = "2.0.0" (Cargo.toml) OR version = "1.1.0" OR something else ???
Given all three licenses are permissive, I personally would remove the Unlicense from the manifest and release 2.0.0. Never tried this before though—I don't know whether crates.io permits changes to the license field between versions, but I expect it does.