diff --git a/Cargo.lock b/Cargo.lock index 5d36907..629dafc 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -194,7 +194,7 @@ dependencies = [ [[package]] name = "stdrename" -version = "1.1.0" +version = "1.2.0" dependencies = [ "Inflector", "clap", diff --git a/Cargo.toml b/Cargo.toml index 976121c..9a988dc 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "stdrename" -version = "1.1.0" +version = "1.2.0" authors = ["Gabriel Lacroix "] edition = "2018" license = "GPL-3.0-or-later" diff --git a/src/lib.rs b/src/lib.rs index f917c47..a6fb46c 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -29,7 +29,7 @@ pub struct Config { impl Config { pub fn new() -> Result> { let matches = App::new("stdrename") - .version("v1.1.0") + .version("v1.2.0") .author("Gabriel Lacroix ") .about("This small utility is designed to rename all files in a folder according to a specified naming convention (camelCase, snake_case, kebab-case, etc.).") .usage("stdrename [FLAGS] [TARGET]")