1.1.3 - 2024-11-07
- Add a
Default
implementation forTypedUuid
. This implementation resolves toTypedUuid::nil()
.
1.1.2 - 2024-10-07
More const constructors for typed UUIDs, mirrored from the uuid
crate: from_fields
,
from_fields_le
, from_u128
, from_u128_le
, from_u64_pair
, from_bytes
, and from_bytes_le
.
Correct doc for as_untyped_uuid
. Thanks @Dr-Emann for your first contribution!
1.1.1 - 2024-10-07
(This version was not released due to a publishing issue.)
1.1.0 - 2024-04-12
TypedUuid::nil()
andmax()
constructors.TypedUuid
is now#[repr(transparent)]
.
- MSRV updated to Rust 1.61.
1.0.1 - 2024-02-15
GenericUuid::to_generic_uuid
has been renamed toGenericUuid::into_generic_uuid
.
- Added
#[must_use]
annotations to constructors.
1.0.0 - 2024-02-15
(This version was not published due to a CI issue.)
0.3.0 - 2024-02-02
TypedUuidTag::try_new
returns a newTagError
type rather than just a raw&'static str
.
TypedUuidTag::as_str
is now aconst fn
.
0.2.1 - 2024-02-02
Documentation improvements.
0.2.0 - 2024-02-01
TypedUuidTag
s are now required to be valid ASCII identifiers, with hyphens also supported.
- Added
#[forbid(unsafe_code)]
. Thanks Robert Lynch for the contribution!
0.1.0 - 2024-01-30
Initial release.