From 69c9858c4e53f1e5a41ec98b231fda8e718aaa37 Mon Sep 17 00:00:00 2001 From: ClementTsang <34804052+ClementTsang@users.noreply.github.com> Date: Sat, 26 Aug 2023 19:57:33 -0400 Subject: [PATCH] changelog --- CHANGELOG.md | 6 ++++++ README.md | 10 +++++----- 2 files changed, 11 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4a009192e..468540f8d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,12 @@ 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.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.9.6] - 2023-08-26 + +## Other + +- [#1286](https://github.com/ClementTsang/bottom/pull/1286): Pin serde to 1.0.188 to help with potential `cargo install` issues. Note this version should be fine and not pull in binaries. + ## [0.9.5] - 2023-08-26 ## Other diff --git a/README.md b/README.md index 1c273a5f9..013ddc57f 100644 --- a/README.md +++ b/README.md @@ -133,19 +133,19 @@ For more details on unsupported platforms and known problems, check out [the doc Installation via cargo can be done by installing the [`bottom`](https://crates.io/crates/bottom) crate: ```bash -# If required, update Rust to the stable channel first +# If required, update Rust to the stable channel first: rustup update stable # Install cargo install bottom --locked # If you use another channel by default, you can specify -# the stable channel as such: +# the stable channel like so: cargo +stable install bottom --locked -# --locked may be omitted if you wish to not used locked -# dependencies. However, this may cause problems, and -# is NOT supported if it does! +# --locked may be omitted if you wish to not use the +# locked crate versions in Cargo.lock. However, be +# aware that this may cause problems with dependencies. cargo install bottom ```