Skip to content

Commit

Permalink
Merge pull request #16 from Gadiguibou/update-to-v1.2.0
Browse files Browse the repository at this point in the history
Update to v1.2.0
  • Loading branch information
Gadiguibou authored Oct 17, 2020
2 parents 83c6d4d + 874a2c7 commit c6f4d31
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 3 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,6 +1,6 @@
[package]
name = "stdrename"
version = "1.1.0"
version = "1.2.0"
authors = ["Gabriel Lacroix <lacroixgabriel@gmail.com>"]
edition = "2018"
license = "GPL-3.0-or-later"
Expand Down
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,16 @@ You may even add a second `.ignore` file in a subdirectory e.g.:

All files in that directory and all sub directories will then reinclude .py files and ignore .txt files.

If you'd like to use global ignore patterns specific to stdrename, you can do so by creating an "`ignore`" (notice this one does not start with a ".") in the following location:

On Windows: `%USERPROFILE%\AppData\Local\stdrename\"`

On Unix based systems (e.g. MacOS or GNU Linux):

`$HOME/.config/stdrename/`

This file follows the same pattern matching principles as other `.gitignore` or `.ignore` files and has a lower precedence than all other sources of ignore rules.

## License

[![FOSSA Status](https://app.fossa.com/api/projects/git%2Bgit.luolix.top%2FGadiguibou%2Fstdrename.svg?type=large)](https://app.fossa.com/projects/git%2Bgit.luolix.top%2FGadiguibou%2Fstdrename?ref=badge_large)
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ pub struct Config {
impl Config {
pub fn new() -> Result<Config, Box<dyn Error>> {
let matches = App::new("stdrename")
.version("v1.1.0")
.version("v1.2.0")
.author("Gabriel Lacroix <lacroixgabriel@gmail.com>")
.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] <convention> [TARGET]")
Expand Down

0 comments on commit c6f4d31

Please sign in to comment.