term: Release 0.18.0
This commit is contained in:
parent
5991bdfa9a
commit
3486c028ea
|
|
@ -3347,7 +3347,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "radicle-term"
|
||||
version = "0.17.0"
|
||||
version = "0.18.0"
|
||||
dependencies = [
|
||||
"anstyle-query",
|
||||
"crossbeam-channel",
|
||||
|
|
|
|||
|
|
@ -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 }
|
||||
|
|
|
|||
|
|
@ -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.
|
||||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in New Issue