Skip to content

Releases: uuid-rs/uuid

1.8.0

18 Mar 23:57
0f2aaae
Compare
Choose a tag to compare

⚠️ 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

1.7.0

19 Jan 00:29
cefc353
Compare
Choose a tag to compare

What's Changed

  • Add missing test for invalid parse_str by @CXWorks in #723
  • Upgrade borsh unstable dependency to v1.0 and make it stable by @bgeron in #724
  • Reduce the package size of uuid by @KodrAus in #726
  • Make use of newer Cargo features for specifying dependencies by @KodrAus in #727
  • Prepare for 1.7.0 release by @KodrAus in #728

New Contributors

Full Changelog: 1.6.1...1.7.0

1.6.1

20 Nov 11:11
c889107
Compare
Choose a tag to compare

What's Changed

Full Changelog: 1.6.0...1.6.1

1.6.0

19 Nov 23:30
4609e61
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: 1.5.0...1.6.0

1.5.0

18 Oct 12:46
e68b010
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: 1.4.1...1.5.0

1.4.1

17 Jul 04:15
97b7f07
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: 1.4.0...1.4.1

1.4.0

27 Jun 04:23
0fc3101
Compare
Choose a tag to compare

What's Changed

  • Fixed wasm tests not running due to incorrect attribute target by @kmusick in #688
  • Fixing issue with Cloudflare Workers and wasm32-unknown-unknown when using now() by @kmusick in #690
  • Add borsh support by @grovesNL in #686
  • Fix some timestamp generation by @KodrAus in #691
  • Prepare for 1.4.0 release by @KodrAus in #692

New Contributors

Full Changelog: 1.3.4...1.4.0

1.3.4

13 Jun 05:23
07052be
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: 1.3.3...1.3.4

1.3.3

15 May 08:44
2cfe9f1
Compare
Choose a tag to compare

What's Changed

Full Changelog: 1.3.2...1.3.3

1.3.2

29 Apr 07:03
52867d4
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: 1.3.1...1.3.2