Radish alpha
h
Radicle Heartwood Protocol & Stack
Radicle
Git (anonymous pull)
Log in to clone via SSH
term: Release 0.18.0
Fintan Halpenny committed 2 days ago
commit 3486c028ea92490a4fec51245ad99372a31bc7f8
parent 5991bdfa9a209fa8193d919de3565c346cd934f3
4 files changed +28 -3
modified Cargo.lock
@@ -3347,7 +3347,7 @@ dependencies = [

[[package]]
name = "radicle-term"
-
version = "0.17.0"
+
version = "0.18.0"
dependencies = [
 "anstyle-query",
 "crossbeam-channel",
modified Cargo.toml
@@ -62,7 +62,7 @@ radicle-oid = { version = "0.2.0", path = "crates/radicle-oid", default-features
radicle-protocol = { version = "0.7", path = "crates/radicle-protocol" }
radicle-signals = { version = "0.11", path = "crates/radicle-signals" }
radicle-systemd = { version = "0.13", path = "crates/radicle-systemd" }
-
radicle-term = { version = "0.17", path = "crates/radicle-term" }
+
radicle-term = { version = "0.18", path = "crates/radicle-term" }
radicle-windows = { version = "0.1", path = "crates/radicle-windows" }
schemars = { version = "1.0.4", default-features = false }
serde = { version = "1.0", default-features = false }
added crates/radicle-term/CHANGELOG.md
@@ -0,0 +1,25 @@
+
# 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.18.0
+

+
### Changed
+

+
- `println` is renamed to `println_prefixed` to better represent the functions behavior.
+
- The new `println` achieves the same behavior as `println!`.
+
- The new `print_inline` is renamed to `print`, and acts the same as `print!`.
+
- All print function variants now swallow `BrokenPipe` errors.
modified crates/radicle-term/Cargo.toml
@@ -4,7 +4,7 @@ description = "Terminal library used by the Radicle CLI"
homepage.workspace = true
repository.workspace = true
license.workspace = true
-
version = "0.17.0"
+
version = "0.18.0"
authors = ["cloudhead <cloudhead@radicle.xyz>"]
edition.workspace = true
rust-version.workspace = true