diff --git a/Cargo.lock b/Cargo.lock index 5a8d2050..69532a57 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3347,7 +3347,7 @@ dependencies = [ [[package]] name = "radicle-term" -version = "0.17.0" +version = "0.18.0" dependencies = [ "anstyle-query", "crossbeam-channel", diff --git a/Cargo.toml b/Cargo.toml index d68ede22..e186c32f 100644 --- a/Cargo.toml +++ b/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 } diff --git a/crates/radicle-term/CHANGELOG.md b/crates/radicle-term/CHANGELOG.md new file mode 100644 index 00000000..ce313d85 --- /dev/null +++ b/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. diff --git a/crates/radicle-term/Cargo.toml b/crates/radicle-term/Cargo.toml index 4aa23aa2..498c52e4 100644 --- a/crates/radicle-term/Cargo.toml +++ b/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 "] edition.workspace = true rust-version.workspace = true