vincent-herlemont / native_db

Drop-in embedded database in Rust
MIT License
433 stars 17 forks source link

chore(deps): update rust crate uuid to 1.8.0 #178

Closed renovate[bot] closed 3 months ago

renovate[bot] commented 3 months ago

Mend Renovate

This PR contains the following updates:

Package Type Update Change
uuid dev-dependencies minor 1 -> 1.8.0

Release Notes

uuid-rs/uuid (uuid) ### [`v1.8.0`](https://togithub.com/uuid-rs/uuid/releases/tag/1.8.0) [Compare Source](https://togithub.com/uuid-rs/uuid/compare/1.7.0...1.8.0) ##### ⚠️ Potential Breakage ⚠️ A new `impl AsRef for Uuid` bound has been added, which can break inference on code like: ```rust let b = uuid.as_ref(); ``` You can fix these by explicitly typing the result of the conversion: ```rust let b: &[u8] = uuid.as_ref(); ``` or by calling `as_bytes` instead: ```rust let b = uuid.as_bytes(); ``` ##### What's Changed - docs: fix small spelling mistake by [@​bengsparks](https://togithub.com/bengsparks) in [https://github.com/uuid-rs/uuid/pull/737](https://togithub.com/uuid-rs/uuid/pull/737) - serde serialize_with support by [@​dakaizou](https://togithub.com/dakaizou) in [https://github.com/uuid-rs/uuid/pull/735](https://togithub.com/uuid-rs/uuid/pull/735) - Fix up CI builds by [@​KodrAus](https://togithub.com/KodrAus) in [https://github.com/uuid-rs/uuid/pull/744](https://togithub.com/uuid-rs/uuid/pull/744) - Only add `wasm-bindgen` as a dependency on `wasm32-unknown-unknown` by [@​emilk](https://togithub.com/emilk) in [https://github.com/uuid-rs/uuid/pull/738](https://togithub.com/uuid-rs/uuid/pull/738) - impl AsRef for Uuid by [@​koshell](https://togithub.com/koshell) in [https://github.com/uuid-rs/uuid/pull/743](https://togithub.com/uuid-rs/uuid/pull/743) - Add v6 to v8 draft link to README by [@​KodrAus](https://togithub.com/KodrAus) in [https://github.com/uuid-rs/uuid/pull/746](https://togithub.com/uuid-rs/uuid/pull/746) - Add a workflow for running cargo outdated by [@​KodrAus](https://togithub.com/KodrAus) in [https://github.com/uuid-rs/uuid/pull/745](https://togithub.com/uuid-rs/uuid/pull/745) - Prepare for 1.8.0 release by [@​KodrAus](https://togithub.com/KodrAus) in [https://github.com/uuid-rs/uuid/pull/747](https://togithub.com/uuid-rs/uuid/pull/747) ##### New Contributors - [@​bengsparks](https://togithub.com/bengsparks) made their first contribution in [https://github.com/uuid-rs/uuid/pull/737](https://togithub.com/uuid-rs/uuid/pull/737) - [@​dakaizou](https://togithub.com/dakaizou) made their first contribution in [https://github.com/uuid-rs/uuid/pull/735](https://togithub.com/uuid-rs/uuid/pull/735) - [@​emilk](https://togithub.com/emilk) made their first contribution in [https://github.com/uuid-rs/uuid/pull/738](https://togithub.com/uuid-rs/uuid/pull/738) - [@​koshell](https://togithub.com/koshell) made their first contribution in [https://github.com/uuid-rs/uuid/pull/743](https://togithub.com/uuid-rs/uuid/pull/743) **Full Changelog**: https://github.com/uuid-rs/uuid/compare/1.7.0...1.8.0 ### [`v1.7.0`](https://togithub.com/uuid-rs/uuid/releases/tag/1.7.0) [Compare Source](https://togithub.com/uuid-rs/uuid/compare/1.6.1...1.7.0) #### What's Changed - Add missing test for invalid parse_str by [@​CXWorks](https://togithub.com/CXWorks) in [https://github.com/uuid-rs/uuid/pull/723](https://togithub.com/uuid-rs/uuid/pull/723) - Upgrade borsh unstable dependency to v1.0 and make it stable by [@​bgeron](https://togithub.com/bgeron) in [https://github.com/uuid-rs/uuid/pull/724](https://togithub.com/uuid-rs/uuid/pull/724) - Reduce the package size of uuid by [@​KodrAus](https://togithub.com/KodrAus) in [https://github.com/uuid-rs/uuid/pull/726](https://togithub.com/uuid-rs/uuid/pull/726) - Make use of newer Cargo features for specifying dependencies by [@​KodrAus](https://togithub.com/KodrAus) in [https://github.com/uuid-rs/uuid/pull/727](https://togithub.com/uuid-rs/uuid/pull/727) - Prepare for 1.7.0 release by [@​KodrAus](https://togithub.com/KodrAus) in [https://github.com/uuid-rs/uuid/pull/728](https://togithub.com/uuid-rs/uuid/pull/728) #### New Contributors - [@​CXWorks](https://togithub.com/CXWorks) made their first contribution in [https://github.com/uuid-rs/uuid/pull/723](https://togithub.com/uuid-rs/uuid/pull/723) - [@​bgeron](https://togithub.com/bgeron) made their first contribution in [https://github.com/uuid-rs/uuid/pull/724](https://togithub.com/uuid-rs/uuid/pull/724) **Full Changelog**: https://github.com/uuid-rs/uuid/compare/1.6.1...1.7.0 ### [`v1.6.1`](https://togithub.com/uuid-rs/uuid/releases/tag/1.6.1) [Compare Source](https://togithub.com/uuid-rs/uuid/compare/1.6.0...1.6.1) #### What's Changed - Fix uuid macro in consts by [@​KodrAus](https://togithub.com/KodrAus) in [https://github.com/uuid-rs/uuid/pull/721](https://togithub.com/uuid-rs/uuid/pull/721) **Full Changelog**: https://github.com/uuid-rs/uuid/compare/1.6.0...1.6.1 ### [`v1.6.0`](https://togithub.com/uuid-rs/uuid/releases/tag/1.6.0) [Compare Source](https://togithub.com/uuid-rs/uuid/compare/1.5.0...1.6.0) #### What's Changed - doc: fix links in v6 module by [@​metalalive](https://togithub.com/metalalive) in [https://github.com/uuid-rs/uuid/pull/714](https://togithub.com/uuid-rs/uuid/pull/714) - Stabilize UUIDv6-v8 support by [@​KodrAus](https://togithub.com/KodrAus) in [https://github.com/uuid-rs/uuid/pull/718](https://togithub.com/uuid-rs/uuid/pull/718) - Prepare for 1.6.0 release by [@​KodrAus](https://togithub.com/KodrAus) in [https://github.com/uuid-rs/uuid/pull/719](https://togithub.com/uuid-rs/uuid/pull/719) #### New Contributors - [@​metalalive](https://togithub.com/metalalive) made their first contribution in [https://github.com/uuid-rs/uuid/pull/714](https://togithub.com/uuid-rs/uuid/pull/714) **Full Changelog**: https://github.com/uuid-rs/uuid/compare/1.5.0...1.6.0 ### [`v1.5.0`](https://togithub.com/uuid-rs/uuid/releases/tag/1.5.0) [Compare Source](https://togithub.com/uuid-rs/uuid/compare/1.4.1...1.5.0) #### What's Changed - Add impl From for String under the std feature flag by [@​brahms116](https://togithub.com/brahms116) in [https://github.com/uuid-rs/uuid/pull/700](https://togithub.com/uuid-rs/uuid/pull/700) - Remove dead link to templates by [@​KodrAus](https://togithub.com/KodrAus) in [https://github.com/uuid-rs/uuid/pull/704](https://togithub.com/uuid-rs/uuid/pull/704) - make ClockSequence wrap correctly by [@​fef1312](https://togithub.com/fef1312) in [https://github.com/uuid-rs/uuid/pull/705](https://togithub.com/uuid-rs/uuid/pull/705) - Track MSRV in Cargo.toml by [@​KodrAus](https://togithub.com/KodrAus) in [https://github.com/uuid-rs/uuid/pull/706](https://togithub.com/uuid-rs/uuid/pull/706) - Support converting between Uuid and vec by [@​KodrAus](https://togithub.com/KodrAus) in [https://github.com/uuid-rs/uuid/pull/703](https://togithub.com/uuid-rs/uuid/pull/703) - Replace MIPS with Miri and add clippy to CI by [@​KodrAus](https://togithub.com/KodrAus) in [https://github.com/uuid-rs/uuid/pull/712](https://togithub.com/uuid-rs/uuid/pull/712) - Added `bytemuck` support by [@​John-Toohey](https://togithub.com/John-Toohey) in [https://github.com/uuid-rs/uuid/pull/711](https://togithub.com/uuid-rs/uuid/pull/711) - Prepare for 1.5.0 release by [@​KodrAus](https://togithub.com/KodrAus) in [https://github.com/uuid-rs/uuid/pull/713](https://togithub.com/uuid-rs/uuid/pull/713) #### New Contributors - [@​brahms116](https://togithub.com/brahms116) made their first contribution in [https://github.com/uuid-rs/uuid/pull/700](https://togithub.com/uuid-rs/uuid/pull/700) - [@​fef1312](https://togithub.com/fef1312) made their first contribution in [https://github.com/uuid-rs/uuid/pull/705](https://togithub.com/uuid-rs/uuid/pull/705) - [@​John-Toohey](https://togithub.com/John-Toohey) made their first contribution in [https://github.com/uuid-rs/uuid/pull/711](https://togithub.com/uuid-rs/uuid/pull/711) **Full Changelog**: https://github.com/uuid-rs/uuid/compare/1.4.1...1.5.0 ### [`v1.4.1`](https://togithub.com/uuid-rs/uuid/releases/tag/1.4.1) [Compare Source](https://togithub.com/uuid-rs/uuid/compare/1.4.0...1.4.1) #### What's Changed - Fix macro hygiene by [@​teohhanhui](https://togithub.com/teohhanhui) in [https://github.com/uuid-rs/uuid/pull/694](https://togithub.com/uuid-rs/uuid/pull/694) - Add #\[inline] for Uuid::from_bytes\[\_ref] and Uuid::{as,into}\_bytes by [@​jrose-signal](https://togithub.com/jrose-signal) in [https://github.com/uuid-rs/uuid/pull/693](https://togithub.com/uuid-rs/uuid/pull/693) - Print uuids in examples by [@​KodrAus](https://togithub.com/KodrAus) in [https://github.com/uuid-rs/uuid/pull/697](https://togithub.com/uuid-rs/uuid/pull/697) - Prepare for 1.4.1 release by [@​KodrAus](https://togithub.com/KodrAus) in [https://github.com/uuid-rs/uuid/pull/698](https://togithub.com/uuid-rs/uuid/pull/698) #### New Contributors - [@​teohhanhui](https://togithub.com/teohhanhui) made their first contribution in [https://github.com/uuid-rs/uuid/pull/694](https://togithub.com/uuid-rs/uuid/pull/694) - [@​jrose-signal](https://togithub.com/jrose-signal) made their first contribution in [https://github.com/uuid-rs/uuid/pull/693](https://togithub.com/uuid-rs/uuid/pull/693) **Full Changelog**: https://github.com/uuid-rs/uuid/compare/1.4.0...1.4.1 ### [`v1.4.0`](https://togithub.com/uuid-rs/uuid/releases/tag/1.4.0) [Compare Source](https://togithub.com/uuid-rs/uuid/compare/1.3.4...1.4.0) #### What's Changed - Fixed wasm tests not running due to incorrect attribute target by [@​kmusick](https://togithub.com/kmusick) in [https://github.com/uuid-rs/uuid/pull/688](https://togithub.com/uuid-rs/uuid/pull/688) - Fixing issue with Cloudflare Workers and wasm32-unknown-unknown when using now() by [@​kmusick](https://togithub.com/kmusick) in [https://github.com/uuid-rs/uuid/pull/690](https://togithub.com/uuid-rs/uuid/pull/690) - Add `borsh` support by [@​grovesNL](https://togithub.com/grovesNL) in [https://github.com/uuid-rs/uuid/pull/686](https://togithub.com/uuid-rs/uuid/pull/686) - Fix some timestamp generation by [@​KodrAus](https://togithub.com/KodrAus) in [https://github.com/uuid-rs/uuid/pull/691](https://togithub.com/uuid-rs/uuid/pull/691) - Prepare for 1.4.0 release by [@​KodrAus](https://togithub.com/KodrAus) in [https://github.com/uuid-rs/uuid/pull/692](https://togithub.com/uuid-rs/uuid/pull/692) #### New Contributors - [@​kmusick](https://togithub.com/kmusick) made their first contribution in [https://github.com/uuid-rs/uuid/pull/688](https://togithub.com/uuid-rs/uuid/pull/688) - [@​grovesNL](https://togithub.com/grovesNL) made their first contribution in [https://github.com/uuid-rs/uuid/pull/686](https://togithub.com/uuid-rs/uuid/pull/686) **Full Changelog**: https://github.com/uuid-rs/uuid/compare/1.3.4...1.4.0 ### [`v1.3.4`](https://togithub.com/uuid-rs/uuid/releases/tag/1.3.4) [Compare Source](https://togithub.com/uuid-rs/uuid/compare/1.3.3...1.3.4) #### What's Changed - Add `wasm32-wasi` support with tests by [@​acfoltzer](https://togithub.com/acfoltzer) in [https://github.com/uuid-rs/uuid/pull/677](https://togithub.com/uuid-rs/uuid/pull/677) - Fix up MSRV build in CI by [@​KodrAus](https://togithub.com/KodrAus) in [https://github.com/uuid-rs/uuid/pull/679](https://togithub.com/uuid-rs/uuid/pull/679) - fix: keep the order when filling random bytes by [@​Hanaasagi](https://togithub.com/Hanaasagi) in [https://github.com/uuid-rs/uuid/pull/682](https://togithub.com/uuid-rs/uuid/pull/682) - Prepare for 1.3.4 release by [@​KodrAus](https://togithub.com/KodrAus) in [https://github.com/uuid-rs/uuid/pull/683](https://togithub.com/uuid-rs/uuid/pull/683) #### New Contributors - [@​acfoltzer](https://togithub.com/acfoltzer) made their first contribution in [https://github.com/uuid-rs/uuid/pull/677](https://togithub.com/uuid-rs/uuid/pull/677) - [@​Hanaasagi](https://togithub.com/Hanaasagi) made their first contribution in [https://github.com/uuid-rs/uuid/pull/682](https://togithub.com/uuid-rs/uuid/pull/682) **Full Changelog**: https://github.com/uuid-rs/uuid/compare/1.3.3...1.3.4 ### [`v1.3.3`](https://togithub.com/uuid-rs/uuid/releases/tag/1.3.3) [Compare Source](https://togithub.com/uuid-rs/uuid/compare/1.3.2...1.3.3) #### What's Changed - Use sha hash for checkout action and remove others by [@​KodrAus](https://togithub.com/KodrAus) in [https://github.com/uuid-rs/uuid/pull/671](https://togithub.com/uuid-rs/uuid/pull/671) - Hard deprecate Timestamp::to_unix_nanos by [@​KodrAus](https://togithub.com/KodrAus) in [https://github.com/uuid-rs/uuid/pull/673](https://togithub.com/uuid-rs/uuid/pull/673) - Prepare for 1.3.3 release by [@​KodrAus](https://togithub.com/KodrAus) in [https://github.com/uuid-rs/uuid/pull/674](https://togithub.com/uuid-rs/uuid/pull/674) **Full Changelog**: https://github.com/uuid-rs/uuid/compare/1.3.2...1.3.3 ### [`v1.3.2`](https://togithub.com/uuid-rs/uuid/releases/tag/1.3.2) [Compare Source](https://togithub.com/uuid-rs/uuid/compare/1.3.1...1.3.2) #### What's Changed - Create SECURITY.md by [@​KodrAus](https://togithub.com/KodrAus) in [https://github.com/uuid-rs/uuid/pull/668](https://togithub.com/uuid-rs/uuid/pull/668) - Faster as_u128 and to_u128\_le by [@​pkoenig10](https://togithub.com/pkoenig10) in [https://github.com/uuid-rs/uuid/pull/669](https://togithub.com/uuid-rs/uuid/pull/669) - prepare for 1.3.2 release by [@​KodrAus](https://togithub.com/KodrAus) in [https://github.com/uuid-rs/uuid/pull/670](https://togithub.com/uuid-rs/uuid/pull/670) #### New Contributors - [@​pkoenig10](https://togithub.com/pkoenig10) made their first contribution in [https://github.com/uuid-rs/uuid/pull/669](https://togithub.com/uuid-rs/uuid/pull/669) **Full Changelog**: https://github.com/uuid-rs/uuid/compare/1.3.1...1.3.2 ### [`v1.3.1`](https://togithub.com/uuid-rs/uuid/releases/tag/1.3.1) [Compare Source](https://togithub.com/uuid-rs/uuid/compare/1.3.0...1.3.1) #### What's Changed - Update syn requirement from 1.0.80 to 2.0.5 by [@​dependabot](https://togithub.com/dependabot) in [https://github.com/uuid-rs/uuid/pull/663](https://togithub.com/uuid-rs/uuid/pull/663) - Update windows-sys requirement from 0.45.0 to 0.48.0 by [@​dependabot](https://togithub.com/dependabot) in [https://github.com/uuid-rs/uuid/pull/665](https://togithub.com/uuid-rs/uuid/pull/665) - remove some extra chars in a comment by [@​KodrAus](https://togithub.com/KodrAus) in [https://github.com/uuid-rs/uuid/pull/666](https://togithub.com/uuid-rs/uuid/pull/666) - Prepare for 1.3.1 release by [@​KodrAus](https://togithub.com/KodrAus) in [https://github.com/uuid-rs/uuid/pull/667](https://togithub.com/uuid-rs/uuid/pull/667) **Full Changelog**: https://github.com/uuid-rs/uuid/compare/1.3.0...1.3.1 ### [`v1.3.0`](https://togithub.com/uuid-rs/uuid/releases/tag/1.3.0) [Compare Source](https://togithub.com/uuid-rs/uuid/compare/1.2.2...1.3.0) #### What's Changed - Fix error message. by [@​basbossink-ds](https://togithub.com/basbossink-ds) in [https://github.com/uuid-rs/uuid/pull/656](https://togithub.com/uuid-rs/uuid/pull/656) - implement Arbitrary::size_hint by [@​Ekleog](https://togithub.com/Ekleog) in [https://github.com/uuid-rs/uuid/pull/657](https://togithub.com/uuid-rs/uuid/pull/657) - Always use hyphenated format regardless of flags by [@​KodrAus](https://togithub.com/KodrAus) in [https://github.com/uuid-rs/uuid/pull/658](https://togithub.com/uuid-rs/uuid/pull/658) - Update windows-sys requirement from 0.42.0 to 0.45.0 by [@​dependabot](https://togithub.com/dependabot) in [https://github.com/uuid-rs/uuid/pull/654](https://togithub.com/uuid-rs/uuid/pull/654) - Prepare for 1.3.0 release by [@​KodrAus](https://togithub.com/KodrAus) in [https://github.com/uuid-rs/uuid/pull/659](https://togithub.com/uuid-rs/uuid/pull/659) #### New Contributors - [@​basbossink-ds](https://togithub.com/basbossink-ds) made their first contribution in [https://github.com/uuid-rs/uuid/pull/656](https://togithub.com/uuid-rs/uuid/pull/656) - [@​Ekleog](https://togithub.com/Ekleog) made their first contribution in [https://github.com/uuid-rs/uuid/pull/657](https://togithub.com/uuid-rs/uuid/pull/657) **Full Changelog**: https://github.com/uuid-rs/uuid/compare/1.2.2...1.3.0 ### [`v1.2.2`](https://togithub.com/uuid-rs/uuid/releases/tag/1.2.2) [Compare Source](https://togithub.com/uuid-rs/uuid/compare/1.2.1...1.2.2) #### What's Changed - CI Cleanups by [@​KodrAus](https://togithub.com/KodrAus) in [https://github.com/uuid-rs/uuid/pull/640](https://togithub.com/uuid-rs/uuid/pull/640) - Remove extern crate alloc by [@​KodrAus](https://togithub.com/KodrAus) in [https://github.com/uuid-rs/uuid/pull/645](https://togithub.com/uuid-rs/uuid/pull/645) - Prepare for 1.2.2 release by [@​KodrAus](https://togithub.com/KodrAus) in [https://github.com/uuid-rs/uuid/pull/646](https://togithub.com/uuid-rs/uuid/pull/646) **Full Changelog**: https://github.com/uuid-rs/uuid/compare/1.2.1...1.2.2 ### [`v1.2.1`](https://togithub.com/uuid-rs/uuid/releases/tag/1.2.1) [Compare Source](https://togithub.com/uuid-rs/uuid/compare/1.2.0...1.2.1) #### What's Changed - Fix up lost re-export of v1 Timestamp by [@​KodrAus](https://togithub.com/KodrAus) in [https://github.com/uuid-rs/uuid/pull/636](https://togithub.com/uuid-rs/uuid/pull/636) - Prepare for 1.2.1 release by [@​KodrAus](https://togithub.com/KodrAus) in [https://github.com/uuid-rs/uuid/pull/637](https://togithub.com/uuid-rs/uuid/pull/637) **Full Changelog**: https://github.com/uuid-rs/uuid/compare/1.2.0...1.2.1 ### [`v1.2.0`](https://togithub.com/uuid-rs/uuid/releases/tag/1.2.0) [Compare Source](https://togithub.com/uuid-rs/uuid/compare/1.1.2...1.2.0) #### What's Changed - formatting changes by [@​pintariching](https://togithub.com/pintariching) in [https://github.com/uuid-rs/uuid/pull/610](https://togithub.com/uuid-rs/uuid/pull/610) - Remove outdated Travis CI reference by [@​atouchet](https://togithub.com/atouchet) in [https://github.com/uuid-rs/uuid/pull/616](https://togithub.com/uuid-rs/uuid/pull/616) - refactors Timestamp, Context and ClockSequence, and adds UUIDS v6, v7, v8 by [@​rrichardson](https://togithub.com/rrichardson) in [https://github.com/uuid-rs/uuid/pull/611](https://togithub.com/uuid-rs/uuid/pull/611) - migrate from winapi to windows_sys in examples by [@​sn99](https://togithub.com/sn99) in [https://github.com/uuid-rs/uuid/pull/626](https://togithub.com/uuid-rs/uuid/pull/626) - Update windows-sys requirement from 0.36.1 to 0.42.0 by [@​dependabot](https://togithub.com/dependabot) in [https://github.com/uuid-rs/uuid/pull/628](https://togithub.com/uuid-rs/uuid/pull/628) - Some work on the new version features by [@​KodrAus](https://togithub.com/KodrAus) in [https://github.com/uuid-rs/uuid/pull/625](https://togithub.com/uuid-rs/uuid/pull/625) - Implement now in wasm by [@​KodrAus](https://togithub.com/KodrAus) in [https://github.com/uuid-rs/uuid/pull/630](https://togithub.com/uuid-rs/uuid/pull/630) - More work on docs by [@​KodrAus](https://togithub.com/KodrAus) in [https://github.com/uuid-rs/uuid/pull/631](https://togithub.com/uuid-rs/uuid/pull/631) - hide draft versions behind the unstable cfg by [@​KodrAus](https://togithub.com/KodrAus) in [https://github.com/uuid-rs/uuid/pull/633](https://togithub.com/uuid-rs/uuid/pull/633) - Prepare for 1.2.0 release by [@​KodrAus](https://togithub.com/KodrAus) in [https://github.com/uuid-rs/uuid/pull/634](https://togithub.com/uuid-rs/uuid/pull/634) #### New Contributors - [@​pintariching](https://togithub.com/pintariching) made their first contribution in [https://github.com/uuid-rs/uuid/pull/610](https://togithub.com/uuid-rs/uuid/pull/610) - [@​atouchet](https://togithub.com/atouchet) made their first contribution in [https://github.com/uuid-rs/uuid/pull/616](https://togithub.com/uuid-rs/uuid/pull/616) - [@​sn99](https://togithub.com/sn99) made their first contribution in [https://github.com/uuid-rs/uuid/pull/626](https://togithub.com/uuid-rs/uuid/pull/626) **Full Changelog**: https://github.com/uuid-rs/uuid/compare/1.1.2...1.2.0 ### [`v1.1.2`](https://togithub.com/uuid-rs/uuid/releases/tag/1.1.2) [Compare Source](https://togithub.com/uuid-rs/uuid/compare/1.1.1...1.1.2) #### What's Changed - Fix some doc links by [@​mbrobbel](https://togithub.com/mbrobbel) in [https://github.com/uuid-rs/uuid/pull/606](https://togithub.com/uuid-rs/uuid/pull/606) - Prepare for 1.1.2 release by [@​KodrAus](https://togithub.com/KodrAus) in [https://github.com/uuid-rs/uuid/pull/607](https://togithub.com/uuid-rs/uuid/pull/607) #### New Contributors - [@​mbrobbel](https://togithub.com/mbrobbel) made their first contribution in [https://github.com/uuid-rs/uuid/pull/606](https://togithub.com/uuid-rs/uuid/pull/606) **Full Changelog**: https://github.com/uuid-rs/uuid/compare/1.1.1...1.1.2 ### [`v1.1.1`](https://togithub.com/uuid-rs/uuid/releases/tag/1.1.1) [Compare Source](https://togithub.com/uuid-rs/uuid/compare/1.1.0...1.1.1) #### What's Changed - Fix documentation typo by [@​nstinus](https://togithub.com/nstinus) in [https://github.com/uuid-rs/uuid/pull/603](https://togithub.com/uuid-rs/uuid/pull/603) - Prepare for 1.1.1 release by [@​KodrAus](https://togithub.com/KodrAus) in [https://github.com/uuid-rs/uuid/pull/604](https://togithub.com/uuid-rs/uuid/pull/604) #### New Contributors - [@​nstinus](https://togithub.com/nstinus) made their first contribution in [https://github.com/uuid-rs/uuid/pull/603](https://togithub.com/uuid-rs/uuid/pull/603) **Full Changelog**: https://github.com/uuid-rs/uuid/compare/1.1.0...1.1.1 ### [`v1.1.0`](https://togithub.com/uuid-rs/uuid/releases/tag/1.1.0) [Compare Source](https://togithub.com/uuid-rs/uuid/compare/1.0.0...1.1.0) #### What's Changed - note that the Error display impl is public API by [@​KodrAus](https://togithub.com/KodrAus) in [https://github.com/uuid-rs/uuid/pull/597](https://togithub.com/uuid-rs/uuid/pull/597) - Fixed documentation link by [@​Razican](https://togithub.com/Razican) in [https://github.com/uuid-rs/uuid/pull/600](https://togithub.com/uuid-rs/uuid/pull/600) - Add to_bytes_le method by [@​dfaust](https://togithub.com/dfaust) in [https://github.com/uuid-rs/uuid/pull/599](https://togithub.com/uuid-rs/uuid/pull/599) - Prepare for 1.1.0 release by [@​KodrAus](https://togithub.com/KodrAus) in [https://github.com/uuid-rs/uuid/pull/602](https://togithub.com/uuid-rs/uuid/pull/602) #### New Contributors - [@​Razican](https://togithub.com/Razican) made their first contribution in [https://github.com/uuid-rs/uuid/pull/600](https://togithub.com/uuid-rs/uuid/pull/600) - [@​dfaust](https://togithub.com/dfaust) made their first contribution in [https://github.com/uuid-rs/uuid/pull/599](https://togithub.com/uuid-rs/uuid/pull/599) **Full Changelog**: https://github.com/uuid-rs/uuid/compare/1.0.0...1.1.0

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.



This PR has been generated by Mend Renovate. View repository job log here.

vincent-herlemont commented 3 months ago

:tada: This PR is included in version 0.7.0 :tada:

The release is available on:

Your semantic-release bot :package::rocket: