crypto: Update to 0.16.0
This commit is contained in:
parent
a2e72b48e7
commit
6745865197
|
|
@ -3042,7 +3042,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "radicle-crypto"
|
||||
version = "0.15.0"
|
||||
version = "0.16.0"
|
||||
dependencies = [
|
||||
"amplify",
|
||||
"cyphernet",
|
||||
|
|
|
|||
|
|
@ -49,7 +49,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.15", path = "crates/radicle-crypto" }
|
||||
radicle-crypto = { version = "0.16", path = "crates/radicle-crypto" }
|
||||
radicle-dag = { version = "0.10", path = "crates/radicle-dag" }
|
||||
radicle-fetch = { version = "0.17", path = "crates/radicle-fetch" }
|
||||
radicle-git-metadata = { version = "0.1.0", path = "crates/radicle-git-metadata", default-features = false }
|
||||
|
|
|
|||
|
|
@ -15,6 +15,22 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||
|
||||
### Security
|
||||
|
||||
## 0.16.0
|
||||
|
||||
### Changed
|
||||
|
||||
- `radicle_crypto::Signer` now has `Signer` (from the `signature` crate) as a
|
||||
supertrait. Downstream implementations of `radicle_crypto::Signer` must also
|
||||
implement this supertrait.
|
||||
- The `sign` and `try_sign` methods were removed from `radicle_crypto::Signer`
|
||||
in favor of those provided by the `signature::Signer` supertrait.
|
||||
|
||||
### Removed
|
||||
|
||||
- `radicle_crypto::Verified` and `radicle_crypto::Unverified` marker structs
|
||||
were removed. Code using these types to parameterize verification state should
|
||||
be updated accordingly.
|
||||
|
||||
## 0.15.0
|
||||
|
||||
### Changed
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@ description = "Radicle cryptographic primitives"
|
|||
homepage.workspace = true
|
||||
repository.workspace = true
|
||||
license.workspace = true
|
||||
version = "0.15.0"
|
||||
version = "0.16.0"
|
||||
authors = [
|
||||
"cloudhead <cloudhead@radicle.xyz>",
|
||||
"Fintan Halpenny <fintan.halpenny@gmail.com>",
|
||||
|
|
|
|||
Loading…
Reference in New Issue