term: Release 0.18.0

This commit is contained in:
Fintan Halpenny 2026-05-06 10:21:48 +01:00
parent 5991bdfa9a
commit 3486c028ea
4 changed files with 28 additions and 3 deletions

2
Cargo.lock generated
View File

@ -3347,7 +3347,7 @@ dependencies = [
[[package]]
name = "radicle-term"
version = "0.17.0"
version = "0.18.0"
dependencies = [
"anstyle-query",
"crossbeam-channel",

View File

@ -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 }

View File

@ -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.

View File

@ -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