Radish alpha
h
Radicle Heartwood Protocol & Stack
Radicle
Git (anonymous pull)
Log in to clone via SSH
crypto: Update to 0.15.0
Fintan Halpenny committed 2 months ago
commit 6013fcba8e4bd38d2a18cf3a9996661f6591e508
parent 3d48de878d7ad229228d64d877041042afec6a38
4 files changed +39 -3
modified Cargo.lock
@@ -3035,7 +3035,7 @@ dependencies = [

[[package]]
name = "radicle-crypto"
-
version = "0.14.0"
+
version = "0.15.0"
dependencies = [
 "amplify",
 "cyphernet",
modified Cargo.toml
@@ -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 }
added crates/radicle-crypto/CHANGELOG.md
@@ -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.*
modified crates/radicle-crypto/Cargo.toml
@@ -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>",