Ver código fonte

Release v0.2.2

apollo 3 dias atrás
pai
commit
b06a7e2190
3 arquivos alterados com 7 adições e 3 exclusões
  1. 1 1
      Cargo.lock
  2. 1 1
      Cargo.toml
  3. 5 1
      README.md

+ 1 - 1
Cargo.lock

@@ -207,7 +207,7 @@ dependencies = [
 
 [[package]]
 name = "rustpan"
-version = "0.2.1"
+version = "0.2.2"
 dependencies = [
  "anyhow",
  "clap",

+ 1 - 1
Cargo.toml

@@ -1,6 +1,6 @@
 [package]
 name = "rustpan"
-version = "0.2.1"
+version = "0.2.2"
 edition = "2021"
 
 [dependencies]

+ 5 - 1
README.md

@@ -2,7 +2,7 @@
 
 It's not a dust pan, it's a rust pan. (A cargo cleaner)
 
-> See `CHANGELOG` for info on [v0.2.1](https://git.red-green.com/david/rustpan/src/v0.2.1)
+> See `CHANGELOG` for info on [v0.2.2](https://git.red-green.com/david/rustpan/src/v0.2.2)
 
 ## Installation
 
@@ -16,6 +16,8 @@ As of [v0.1.1](https://git.red-green.com/david/rustpan/src/v0.1.1) it also suppo
 
 As of [v0.1.6](https://git.red-green.com/david/rustpan/src/v0.1.6) it also only cleans after last modified and/or last accessed exceed a certain X days (This feature first arrived in v0.1.[3](https://git.red-green.com/david/rustpan/src/v0.1.3) and was improved thru v0.1.[4](https://git.red-green.com/david/rustpan/src/v0.1.4), v0.1.[5](https://git.red-green.com/david/rustpan/src/v0.1.5) and finalized in v0.1.[6](https://git.red-green.com/david/rustpan/src/v0.1.6))
 
+As of [v0.2.2](https://git.red-green.com/david/rustpan/src/v0.2.2) it ignores "hidden" files & directories (the likes of `.git`, `.cargo`, `.cache`)
+
 ```
 # E.G.
 dev/rust/major_project/
@@ -33,3 +35,5 @@ dev/rust/major_project/crate3/target/
 The above will be cleaned even if you run rust pan from `dev/rust/` (Or you could run it in `dev/rust/major_project`, which might be better if you only wanted to clean just a handful of crates)
 
 > In [v0.1.2](https://git.red-green.com/david/rustpan/src/v0.1.2), the above can also be cleaned from `dev/`
+
+> In [v0.2.2](https://git.red-green.com/david/rustpan/src/v0.2.2), the above can also be cleaned from `/` (An issue with permissions has been fixed by simply not going over hidden files/directories)