Skip to content

Commit 455932e

Browse files
committed
update: rmxt 0.1.10
1 parent 5da73c1 commit 455932e

File tree

5 files changed

+6
-7
lines changed

5 files changed

+6
-7
lines changed

CHANGELOG.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10-
## [0.1.9] - 2025
10+
## [0.1.10] - 2025-09-07
1111

1212
### Fixed
1313
- **Critical ignore flag bug**: Fixed issue where `-i, --ignore` flag was not functioning correctly, causing errors while trying to ingore them while using `rmxt` commands
1414

1515
### Changed
1616
- Imporved different cases handling in the ignore flag logic with match block
1717

18-
### Added
1918

2019
## [0.1.9] - 2025-09-01
2120

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rmxt"
3-
version = "0.1.9"
3+
version = "0.1.10"
44
edition = "2024"
55
authors = ["Santosh Shrestha <santoshxshrestha@gmail.com> "]
66
description = "A replacement for the 'rm' command with a trash feature for safer file deletion."

src/args.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ use clap::{Parser, Subcommand};
22
use std::path::PathBuf;
33

44
#[derive(Debug, Parser)]
5-
#[command(name = "rmxd", author = "santoshxshrestha", version, about)]
5+
#[command(name = "rmxt", author = "santoshxshrestha", version, about)]
66
pub struct Args {
77
/// Path of the file (when no subcommand is used)
88
#[arg(help = "Files or directories to remove")]

src/main.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -240,7 +240,7 @@ All the contents from the trash more then {days} days will be deleted permanentl
240240
if !path.exists() {
241241
eprintln!(
242242
"{}",
243-
format!("rmxd: cannot remove {path:?}: No such file or directory").red()
243+
format!("rmxt: cannot remove {path:?}: No such file or directory").red()
244244
)
245245
}
246246
if path.is_dir() && dir {
@@ -254,7 +254,7 @@ All the contents from the trash more then {days} days will be deleted permanentl
254254
if !force {
255255
eprintln!(
256256
"{}",
257-
format!("rmxd: cannot remove {path:?}: Is a directory").red()
257+
format!("rmxt: cannot remove {path:?}: Is a directory").red()
258258
);
259259
}
260260
continue;

0 commit comments

Comments
 (0)