Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
kimono-koans committed Feb 1, 2025
1 parent a835f58 commit 820a289
Show file tree
Hide file tree
Showing 5 changed files with 282 additions and 47 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "httm"
authors = ["Robert Swinford <robert.swinford <...at...> gmail.com>"]
version = "0.45.5"
version = "0.45.6"
edition = "2021"
keywords = ["zfs", "backup", "restore", "cli-utility", "snapshot"]
description = "A CLI tool for viewing snapshot file versions on ZFS and btrfs datasets"
Expand Down
4 changes: 2 additions & 2 deletions httm.1
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.49.3.
.TH HTTM "1" "January 2025" "httm 0.45.5" "User Commands"
.TH HTTM "1" "February 2025" "httm 0.45.6" "User Commands"
.SH NAME
httm \- manual page for httm 0.45.5
httm \- manual page for httm 0.45.6
.SH SYNOPSIS
.B httm
[\fI\,OPTIONS\/\fR] [\fI\,INPUT_FILES\/\fR]...
Expand Down
2 changes: 2 additions & 0 deletions src/lookup/deleted.rs
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,8 @@ impl DeletedFiles {
.into_owned()
.into_iter()
.map(|path| path.join(search_bundle.relative_path.as_os_str()))
// important to note: this is a read dir on snapshots directories,
// b/c read dir on deleted dirs from a live filesystem will fail
.flat_map(std::fs::read_dir)
.flatten()
.flatten()
Expand Down
Loading

0 comments on commit 820a289

Please sign in to comment.