crypto: Update to 0.15.0

This commit is contained in:
Fintan Halpenny 2026-02-18 11:16:16 +00:00 committed by Lorenz Leutgeb
parent 84e9ffe4dc
commit 963b4ded2b
4 changed files with 39 additions and 3 deletions

2
Cargo.lock generated
View File

@ -3035,7 +3035,7 @@ dependencies = [
[[package]]
name = "radicle-crypto"
version = "0.14.0"
version = "0.15.0"
dependencies = [
"amplify",
"cyphernet",

View File

@ -48,7 +48,7 @@ radicle-cli = { version = "0.18", path = "crates/radicle-cli" }
radicle-cli-test = { path = "crates/radicle-cli-test" }
radicle-cob = { version = "0.18", path = "crates/radicle-cob" }
radicle-core = { version = "0.1", path = "crates/radicle-core" }
radicle-crypto = { version = "0.14", path = "crates/radicle-crypto" }
radicle-crypto = { version = "0.15", path = "crates/radicle-crypto" }
radicle-dag = { version = "0.10", path = "crates/radicle-dag" }
radicle-fetch = { version = "0.16", path = "crates/radicle-fetch" }
radicle-git-metadata = { version = "0.1.0", path = "crates/radicle-git-metadata", default-features = false }

View File

@ -0,0 +1,36 @@
# Changelog
All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [Unreleased]
### Added
### Changed
### Removed
### Security
## 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`, and
`radicle_crypto::ssh::keystore::MemorySignerError`.
### Removed
- The `radicle-git-ext` Cargo feature was removed.
### Security
*No security updates.*

View File

@ -4,7 +4,7 @@ description = "Radicle cryptographic primitives"
homepage.workspace = true
repository.workspace = true
license.workspace = true
version = "0.14.0"
version = "0.15.0"
authors = [
"cloudhead <cloudhead@radicle.xyz>",
"Fintan Halpenny <fintan.halpenny@gmail.com>",