diff --git a/CHANGELOG.md b/CHANGELOG.md index eada09a..e65f5e2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,20 @@ 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). +## [1.7.1] - 2024-12-15 + +### Fixed +- Use the smaller regex-lite crate by @omnivagant in [#180](https://github.com/orhun/kmon/pull/180) +- Allow '?' as search query by @orhun + +### Changed +- Update Cargo.lock by @orhun +- Update Cargo.lock format version by @orhun + +## New Contributors + +* @omnivagant made their first contribution in [#180](https://github.com/orhun/kmon/pull/180) + ## [1.7.0] - 2024-12-12 ### Added diff --git a/Cargo.lock b/Cargo.lock index fee9822..ed2ab42 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" @@ -419,7 +419,7 @@ checksum = "49f1f14873335454500d59611f1cf4a4b0f786f9ac11f4312a78e4cf2566695b" [[package]] name = "kmon" -version = "1.7.0" +version = "1.7.1" dependencies = [ "bytesize", "clap", diff --git a/Cargo.toml b/Cargo.toml index a24fcb6..9e4437a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "kmon" -version = "1.7.0" +version = "1.7.1" description = "Linux kernel manager and activity monitor" authors = ["Orhun Parmaksız "] license = "GPL-3.0"