From a86edea6b26a7e5a6ee87205c4b5e308a4d3e4d7 Mon Sep 17 00:00:00 2001 From: Techcable Date: Sun, 18 Feb 2024 16:22:21 -0700 Subject: [PATCH] Bump version to 2.9.1 Includes important fix #47 Sorry for the long wait! --- CHANGELOG.md | 10 +++++++++- Cargo.toml | 2 +- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8452ea3..e144ad3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,9 +6,17 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased](https://github.com/slog-rs/term/compare/v2.8.1...HEAD) - ReleaseDate + +## 2.9.1 - 2024-02-18 +### Fixed * Switch from `atty` to `is_terminal` * Avoids [RUSTSEC-2021-0145](https://rustsec.org/advisories/RUSTSEC-2021-0145) -* BREAKING: Bump MSRV to 1.63 + * Merges PR #47 - Thanks @rkd-msw + +### Changed +* Bump MSRV to 1.63 + * This rust version was released almost 2 years ago. + I don't consider this significant enough to bump the minor version. ## 2.9.0 - 2022-02-20 ### Changed diff --git a/Cargo.toml b/Cargo.toml index 5d9c9a9..9b89506 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "slog-term" -version = "2.9.0" +version = "2.9.1" authors = ["Dawid Ciężarkiewicz "] description = "Unix terminal drain and formatter for slog-rs" keywords = ["slog", "logging", "log", "term"]