diff --git a/CHANGELOG.md b/CHANGELOG.md index 1d1a9452..c9986fbc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,9 +1,16 @@ -# Unreleased +# 2020/12/10: 0.8.0 + +Thanks to @trevarj and @shumvgolove for contributing to this release. + +## New features -- It's now possible to build tiny with stable Rust 1.47.0 or newer. Previously - tiny required nightly toolchain. (#241) - Channels with join/leave events are now highlighted with a yellow-ish color. Default color can be overridden in the config file. (#262) + +## Bug fixes and other improvements + +- It's now possible to build tiny with stable Rust 1.48 or newer. Previously + tiny required nightly toolchain. (#241) - Fixed a TUI bug when `scrollback` is set. (#265) - In builds without desktop notification support, `/notify` commands now print a helpful message on how to enable it. Previously `/notify` would behave as if diff --git a/README.md b/README.md index 9d42e9a7..a5ada589 100644 --- a/README.md +++ b/README.md @@ -52,7 +52,7 @@ tiny works on Linux and OSX. Windows users can run it under Windows Subsystem for Linux. For pre-built binaries see [releases]. To build from source make sure you have -Rust 1.47.0 or newer. By default tiny uses [rustls] for TLS support, and desktop +Rust 1.48 or newer. By default tiny uses [rustls] for TLS support, and desktop notifications are disabled. [releases]: https://github.com/osa1/tiny/releases diff --git a/tiny/Cargo.toml b/tiny/Cargo.toml index 08cf5e7c..ad6c8233 100644 --- a/tiny/Cargo.toml +++ b/tiny/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tiny" -version = "0.7.0" +version = "0.8.0" authors = ["Ömer Sinan Ağacan "] repository = "https://github.com/osa1/tiny" readme = "README.md"