From 4466dabebce1c59bb8b04c6585b20396c86eb993 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Orhun=20Parmaks=C4=B1z?= Date: Thu, 12 Dec 2024 22:06:32 +0300 Subject: [PATCH] chore: Prepare for the release v1.7.0 --- CHANGELOG.md | 27 +++++++++++++++++++++++++-- Cargo.lock | 4 ++-- Cargo.toml | 2 +- 3 files changed, 28 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ca2a966..eada09a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,9 +5,32 @@ 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). -## Master +## [1.7.0] - 2024-12-12 + ### Added -- Support for searching kernel modules by regular expression +- Add support for searching kernel modules by regex by @Integral-Tech in [#178](https://github.com/orhun/kmon/pull/178) + +### Changed +- Use binary units for size instead of decimal units by @Integral-Tech in [#177](https://github.com/orhun/kmon/pull/177) +- Replace make with $(MAKE) in example Makefile by @Integral-Tech in [#175](https://github.com/orhun/kmon/pull/175) +- Replace format! with other macros/methods when unnecessary by @Integral-Tech in [#176](https://github.com/orhun/kmon/pull/176) +- Use the conventional comment syntax by @Muhammad-Owais-Warsi in [#174](https://github.com/orhun/kmon/pull/174) +- Run cargo fmt for formatting by @orhun +- Update formatting for Rust nightly by @orhun +- Apply clippy suggestions by @orhun +- Update Twitter handle by @orhun +- Update Arch Linux package link by @orhun +- Update tui reference by @orhun +- Update table of contents by @orhun +- Update MSRV to 1.74.1 by @orhun +- Upgrade dependencies by @orhun + +## New Contributors + +* @Integral-Tech made their first contribution in [#178](https://github.com/orhun/kmon/pull/178) +* @Muhammad-Owais-Warsi made their first contribution in [#174](https://github.com/orhun/kmon/pull/174) + +[1.7.0]: https://github.com/orhun/kmon/compare/v1.6.5..1.7.0 ## [1.6.5] - 2024-04-12 ### Added diff --git a/Cargo.lock b/Cargo.lock index 0a83383..0c50171 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1,6 +1,6 @@ # This file is automatically @generated by Cargo. # It is not intended for manual editing. -version = 3 +version = 4 [[package]] name = "ahash" @@ -428,7 +428,7 @@ checksum = "49f1f14873335454500d59611f1cf4a4b0f786f9ac11f4312a78e4cf2566695b" [[package]] name = "kmon" -version = "1.6.5" +version = "1.7.0" dependencies = [ "bytesize", "clap", diff --git a/Cargo.toml b/Cargo.toml index d5b0b9f..f1dc569 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "kmon" -version = "1.6.5" +version = "1.7.0" description = "Linux kernel manager and activity monitor" authors = ["Orhun Parmaksız "] license = "GPL-3.0"