Skip to content

1.8.0

Latest
Compare
Choose a tag to compare
@KodrAus KodrAus released this 18 Mar 23:57
· 9 commits to main since this release
0f2aaae

⚠️ Potential Breakage ⚠️

A new impl AsRef<Uuid> for Uuid bound has been added, which can break inference on code like:

let b = uuid.as_ref();

You can fix these by explicitly typing the result of the conversion:

let b: &[u8] = uuid.as_ref();

or by calling as_bytes instead:

let b = uuid.as_bytes();

What's Changed

New Contributors

Full Changelog: 1.7.0...1.8.0