From 1828dc4e78a4b0a49208834e45f0096932f8bcd8 Mon Sep 17 00:00:00 2001 From: kidev Date: Sat, 31 Jan 2026 00:03:32 +0100 Subject: [PATCH] Fix date formatting overflow bug, bump to v0.2.1 - Use chrono library for proper date parsing from Unix timestamps - Fixes integer overflow in manual date calculation that caused dates to display as huge numbers like "2026-01-18446744073709551241" --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 94bc3d9..9da70ea 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zfsdu" -version = "0.2.0" +version = "0.2.1" edition = "2021" description = "ncdu-like disk usage viewer for ZFS with snapshot management" authors = ["Florian Schermer"]