crypto: Update to 0.15.0
This commit is contained in:
parent
84e9ffe4dc
commit
963b4ded2b
|
|
@ -3035,7 +3035,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "radicle-crypto"
|
name = "radicle-crypto"
|
||||||
version = "0.14.0"
|
version = "0.15.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"amplify",
|
"amplify",
|
||||||
"cyphernet",
|
"cyphernet",
|
||||||
|
|
|
||||||
|
|
@ -48,7 +48,7 @@ radicle-cli = { version = "0.18", path = "crates/radicle-cli" }
|
||||||
radicle-cli-test = { path = "crates/radicle-cli-test" }
|
radicle-cli-test = { path = "crates/radicle-cli-test" }
|
||||||
radicle-cob = { version = "0.18", path = "crates/radicle-cob" }
|
radicle-cob = { version = "0.18", path = "crates/radicle-cob" }
|
||||||
radicle-core = { version = "0.1", path = "crates/radicle-core" }
|
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-dag = { version = "0.10", path = "crates/radicle-dag" }
|
||||||
radicle-fetch = { version = "0.16", path = "crates/radicle-fetch" }
|
radicle-fetch = { version = "0.16", path = "crates/radicle-fetch" }
|
||||||
radicle-git-metadata = { version = "0.1.0", path = "crates/radicle-git-metadata", default-features = false }
|
radicle-git-metadata = { version = "0.1.0", path = "crates/radicle-git-metadata", default-features = false }
|
||||||
|
|
|
||||||
|
|
@ -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.*
|
||||||
|
|
@ -4,7 +4,7 @@ description = "Radicle cryptographic primitives"
|
||||||
homepage.workspace = true
|
homepage.workspace = true
|
||||||
repository.workspace = true
|
repository.workspace = true
|
||||||
license.workspace = true
|
license.workspace = true
|
||||||
version = "0.14.0"
|
version = "0.15.0"
|
||||||
authors = [
|
authors = [
|
||||||
"cloudhead <cloudhead@radicle.xyz>",
|
"cloudhead <cloudhead@radicle.xyz>",
|
||||||
"Fintan Halpenny <fintan.halpenny@gmail.com>",
|
"Fintan Halpenny <fintan.halpenny@gmail.com>",
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue