diff --git a/CHANGELOG.md b/CHANGELOG.md index 14c45a9..2161571 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,33 @@ # Changelog +## 0.6.0 + +### Added + +- Render a message when there are no channels/messages ([#338]) +- Keyboard bindings for emoji reactions ([#327], [#330]) + +### Fixes + +- Random state reusage ([#326]): + This fixes the long-stating issue [#234] about losing the Signal session and + losing messages between linked clients. +- Replace reaction in UI instead of always removing it when replacing it ([#332]) +- Ignore empty names from contact store ([#336]) + +### Internal + +- Respect `RUST_LOG` when specifying --verbose ([#322]) + +[#234]: https://github.com/boxdot/gurk-rs/issues/234 +[#326]: https://github.com/boxdot/gurk-rs/pull/326 +[#332]: https://github.com/boxdot/gurk-rs/pull/332 +[#336]: https://github.com/boxdot/gurk-rs/pull/336 +[#338]: https://github.com/boxdot/gurk-rs/pull/338 +[#330]: https://github.com/boxdot/gurk-rs/pull/330 +[#327]: https://github.com/boxdot/gurk-rs/pull/327 + + ## 0.5.2 ### Added diff --git a/Cargo.lock b/Cargo.lock index 01e4824..ba78310 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1697,7 +1697,7 @@ checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b" [[package]] name = "gurk" -version = "0.5.3-dev" +version = "0.6.0" dependencies = [ "aho-corasick", "anyhow", diff --git a/Cargo.toml b/Cargo.toml index 99fe63a..06f2de5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "gurk" description = "Signal messenger client for terminal" -version = "0.5.3-dev" +version = "0.6.0" authors = ["boxdot "] edition = "2021" keywords = ["signal", "tui"]