Radish alpha
h
Radicle Heartwood Protocol & Stack
Radicle
Git (anonymous pull)
Log in to clone via SSH
node: Release 0.20.0
Fintan Halpenny committed 2 days ago
commit 342b4d963a430342613083eaf86e9efa8469f016
parent 622f3827b5848b6d5922c881b8e488894a2a5c73
4 files changed +17 -3
modified Cargo.lock
@@ -3210,7 +3210,7 @@ dependencies = [

[[package]]
name = "radicle-node"
-
version = "0.19.0"
+
version = "0.20.0"
dependencies = [
 "backtrace",
 "bytes",
modified Cargo.toml
@@ -57,7 +57,7 @@ radicle-fetch = { version = "0.19", path = "crates/radicle-fetch" }
radicle-git-metadata = { version = "0.2.0", path = "crates/radicle-git-metadata", default-features = false }
radicle-git-ref-format = { version = "0.1.0", path = "crates/radicle-git-ref-format", default-features = false }
radicle-localtime = { version = "0.1", path = "crates/radicle-localtime" }
-
radicle-node = { version = "0.19", path = "crates/radicle-node" }
+
radicle-node = { version = "0.20", path = "crates/radicle-node" }
radicle-oid = { version = "0.2.0", path = "crates/radicle-oid", default-features = false }
radicle-protocol = { version = "0.8", path = "crates/radicle-protocol" }
radicle-signals = { version = "0.11", path = "crates/radicle-signals" }
modified crates/radicle-node/CHANGELOG.md
@@ -15,6 +15,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Security

+
## 0.19.0
+

+
### Changed
+

+
- `Runtime::init` now takes a `PathBuf` parameter for the socket file.
+
- `runtime::handle::Handle::new` also takes a `PathBuf` parameter for the socket
+
  file.
+

+
### Removed
+

+
- The public static `radicle_node::USER_AGENT`. Callers should source
+
  the user-agent string from its replacement (e.g. via
+
  `radicle::node::config::Config::user_agent`).
+

## 0.18.0

### Changed
modified crates/radicle-node/Cargo.toml
@@ -3,7 +3,7 @@ name = "radicle-node"
description = "The Radicle Node"
homepage.workspace = true
license.workspace = true
-
version = "0.19.0"
+
version = "0.20.0"
authors = ["cloudhead <cloudhead@radicle.xyz>"]
edition.workspace = true
build = "build.rs"