Skip to content

Commit c6f4d31

Browse files
authored
Merge pull request #16 from Gadiguibou/update-to-v1.2.0
Update to v1.2.0
2 parents 83c6d4d + 874a2c7 commit c6f4d31

File tree

4 files changed

+13
-3
lines changed

4 files changed

+13
-3
lines changed

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 = "stdrename"
3-
version = "1.1.0"
3+
version = "1.2.0"
44
authors = ["Gabriel Lacroix <[email protected]>"]
55
edition = "2018"
66
license = "GPL-3.0-or-later"

README.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -122,6 +122,16 @@ You may even add a second `.ignore` file in a subdirectory e.g.:
122122

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

125+
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:
126+
127+
On Windows: `%USERPROFILE%\AppData\Local\stdrename\"`
128+
129+
On Unix based systems (e.g. MacOS or GNU Linux):
130+
131+
`$HOME/.config/stdrename/`
132+
133+
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.
134+
125135
## License
126136

127137
[![FOSSA Status](https://app.fossa.com/api/projects/git%2Bgithub.com%2FGadiguibou%2Fstdrename.svg?type=large)](https://app.fossa.com/projects/git%2Bgithub.com%2FGadiguibou%2Fstdrename?ref=badge_large)

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ pub struct Config {
2929
impl Config {
3030
pub fn new() -> Result<Config, Box<dyn Error>> {
3131
let matches = App::new("stdrename")
32-
.version("v1.1.0")
32+
.version("v1.2.0")
3333
.author("Gabriel Lacroix <[email protected]>")
3434
.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.).")
3535
.usage("stdrename [FLAGS] <convention> [TARGET]")

0 commit comments

Comments
 (0)