Explorar o código

v0.2.0 Major release

This marks a major release of rustpan v0.2!

It fixes a issue with --version (v0.1.6 will identify as v0.1.5, with subtile differences between the 2)
david hai 1 mes
pai
achega
cfff631aa6
Modificáronse 5 ficheiros con 8 adicións e 5 borrados
  1. 4 1
      CHANGELOG
  2. 1 1
      Cargo.lock
  3. 1 1
      Cargo.toml
  4. 1 1
      README.md
  5. 1 1
      src/main.rs

+ 4 - 1
CHANGELOG

@@ -1,4 +1,7 @@
-v0.1.6 => Latest
+v0.2.0 => Latest
+    It was found version v0.1.6 when asked --version it would render v0.1.5
+    It was hardcoded to say v0.1.5 (Now it should be filled in by clap)
+v0.1.6
     Fixed CLI bug where we were overwriting the days to consider last modified
     Fixed CLI bug where we were overwriting the days to consider last modified
     and last accessed
     and last accessed
 v0.1.5
 v0.1.5

+ 1 - 1
Cargo.lock

@@ -142,7 +142,7 @@ dependencies = [
 
 
 [[package]]
 [[package]]
 name = "rustpan"
 name = "rustpan"
-version = "0.1.6"
+version = "0.2.0"
 dependencies = [
 dependencies = [
  "anyhow",
  "anyhow",
  "clap",
  "clap",

+ 1 - 1
Cargo.toml

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

+ 1 - 1
README.md

@@ -2,7 +2,7 @@
 
 
 It's not a dust pan, it's a rust pan. (A cargo cleaner)
 It's not a dust pan, it's a rust pan. (A cargo cleaner)
 
 
-> See `CHANGELOG` for info on [v0.1.6](https://git.red-green.com/david/rustpan/src/v0.1.6)
+> See `CHANGELOG` for info on [v0.2.0](https://git.red-green.com/david/rustpan/src/v0.2.0)
 
 
 ## Installation
 ## Installation
 
 

+ 1 - 1
src/main.rs

@@ -5,7 +5,7 @@ use clap::Parser;
 const SECS_IN_DAY: u64 = 86400;
 const SECS_IN_DAY: u64 = 86400;
 
 
 #[derive(Parser, Debug)]
 #[derive(Parser, Debug)]
-#[command(version = "0.1.5", about = "It's not a dust pan, it's a rust pan. (A cargo cleaner)", long_about = None)]
+#[command(version, about = "It's not a dust pan, it's a rust pan. (A cargo cleaner)", long_about = None)]
 struct Args {
 struct Args {
     #[arg(short='v', long="verbose")]
     #[arg(short='v', long="verbose")]
     /// Print extra information
     /// Print extra information