summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorOrhun Parmaksız <orhunparmaksiz@gmail.com>2023-10-27 10:52:14 +0200
committerOrhun Parmaksız <orhunparmaksiz@gmail.com>2023-10-27 10:52:14 +0200
commit3ed516fcbfe6600d27287e49545f023e9736a200 (patch)
treec8408526dbf834f6d68f62d2148995a642ad33b7
parentf427309e59ecb76db3775dfa2e43f26ea8851afb (diff)
chore: Prepare for the release v1.6.4v1.6.4
-rw-r--r--CHANGELOG.md7
-rw-r--r--Cargo.lock2
-rw-r--r--Cargo.toml6
3 files changed, 12 insertions, 3 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 1a69b75..0ad2ec2 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -5,6 +5,13 @@ 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.6.4] - 2023-10-27
+### Changed
+- Bump dependencies
+
+### Fixed
+- Fix all new clippy errors with 'rustc:1.73.0'
+
## [1.6.3] - 2023-04-06
### Added
- Build Docker image for arm64
diff --git a/Cargo.lock b/Cargo.lock
index 77b2b70..1c9f062 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -307,7 +307,7 @@ dependencies = [
[[package]]
name = "kmon"
-version = "1.6.3"
+version = "1.6.4"
dependencies = [
"bytesize",
"clap",
diff --git a/Cargo.toml b/Cargo.toml
index 4395b47..e4b084b 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "kmon"
-version = "1.6.3"
+version = "1.6.4"
description = "Linux kernel manager and activity monitor"
authors = ["Orhun Parmaksız <orhunparmaksiz@gmail.com>"]
license = "GPL-3.0"
@@ -14,7 +14,9 @@ include = ["src/**/*", "Cargo.*", "LICENSE", "README.md", "CHANGELOG.md"]
edition = "2021"
[dependencies]
-ratatui = { version = "0.24.0", default-features = false, features = ["termion"] }
+ratatui = { version = "0.24.0", default-features = false, features = [
+ "termion",
+] }
termion = "2.0.1"
bytesize = "1.3.0"
unicode-width = "0.1.11"