diff --git a/CHANGELOG.md b/CHANGELOG.md index 7de69b89..f489f0d5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,16 @@ -# Unreleased +# 2021/11/07: 0.10.0 + +Thanks to @trevarj for contributing to this release. + +## New features - New command `/quit` added for quitting. Key binding for quitting (`C-c enter`) works as before. +- Key bindings can be configured in the config file. See the [wiki + page][key-bindings-wiki] for details. (#328, #336) + +## Bug fixes and other improvements + - `/msg ` command now accepts anything as `` as long as it doesn't start with `#`. (#324) - Error message when sending a message in the mentions tab improved. (#329) @@ -9,8 +18,6 @@ tiny. (8061042) - Minor improvements in logging (d0505f2, bbb4b81) - `/join` (without arguments) now rejoins the current channel. (#334) -- Key bindings can be configured in the config file. See the [wiki - page][key-bindings-wiki] for details. (#328, #336) - Handling of IRC formatting characters (colors etc.) in TUI and logger improved: - TUI now handles "reset" control character, to reset the text style to the diff --git a/Cargo.lock b/Cargo.lock index de39aa3e..2d32f481 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -982,7 +982,7 @@ dependencies = [ [[package]] name = "tiny" -version = "0.9.0" +version = "0.10.0" dependencies = [ "clap", "dirs 3.0.2", diff --git a/crates/tiny/Cargo.toml b/crates/tiny/Cargo.toml index 977971d7..86b48f5b 100644 --- a/crates/tiny/Cargo.toml +++ b/crates/tiny/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tiny" -version = "0.9.0" +version = "0.10.0" authors = ["Ömer Sinan Ağacan "] repository = "https://github.com/osa1/tiny" readme = "README.md"