1.8 KiB
1.8 KiB
Changelog
All notable changes to this project will be documented in this file.
The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.
[Unreleased]
Added
Changed
Removed
Security
0.17.0
Changed
- The public tuple field on
PublicKeyhas been made private. Code that constructed or destructuredPublicKeypositionally (e.g.PublicKey(inner)orlet PublicKey(x) = pk) will no longer compile. Construction ofPublicKeyshould now be done throughFrom,TryFrom, orDeserializeimplementations. For accessing the inner bytes, usePublicKey::to_byte_array.
0.16.0
Changed
radicle_crypto::Signernow hasSigner(from thesignaturecrate) as a supertrait. Downstream implementations ofradicle_crypto::Signermust also implement this supertrait.- The
signandtry_signmethods were removed fromradicle_crypto::Signerin favor of those provided by thesignature::Signersupertrait.
Removed
radicle_crypto::Verifiedandradicle_crypto::Unverifiedmarker structs were removed. Code using these types to parameterize verification state should be updated accordingly.
0.15.0
Changed
- The following enums are now marked as
non_exhaustive:radicle_crypto::SignatureError,radicle_crypto::PublicKeyError,radicle_crypto::ssh::PublicKeyError,radicle_crypto::ssh::SignatureError,radicle_crypto::ssh::SecretKeyError,radicle_crypto::ssh::ExtendedSignatureError,radicle_crypto::ssh::keystore::Error, andradicle_crypto::ssh::keystore::MemorySignerError.
Removed
- The
radicle-git-extCargo feature was removed.
Security
No security updates.