Skip to content

Commit

Permalink
Merge pull request #59 from nevdelap/updatecopyright
Browse files Browse the repository at this point in the history
Updated copyright date.
  • Loading branch information
nevdelap authored Jan 19, 2019
2 parents 56553ad + 2b19e82 commit 1a88225
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ Quiet:
as many files as needed to find a match. Even without this shortcutting
behaviour quiet matches are more performant than non-quiet matches.
ned 1.2.5 Copyright (C) 2016-2018 Nev Delap - https://github.com/nevdelap/ned
ned 1.2.5 Copyright (C) 2016-2019 Nev Delap - https://github.com/nevdelap/ned
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>.
This is free software: you are free to change and redistribute it.
Expand Down Expand Up @@ -316,7 +316,7 @@ ned 'the ([a-z]+) dog and the ([a-z]+) cat' -r 'the $2 dog and the $1 cat'
#### Replace changing case
'big dog' and 'smelly dog' replaced with 'BIG! dog' and 'SMELLY! dog'.

Available case replacements: \U - uppercase, \L - lowercase, \I - initial uppercase (title case), \F - first uppercase (sentence case). **Note:** Case replacements are affected by [issue #56](https://github.com/nevdelap/ned/issues/56) in the latest version.
Available case replacements: \U - uppercase, \L - lowercase, \I - initial uppercase (title case), \F - first uppercase (sentence case).
```
ned ' ([a-z]+) dog' --case-replacements -r '\U$1\E! dog' --stdout .
```
Expand Down
2 changes: 1 addition & 1 deletion src/opts.rs
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ Quiet:

static COPYRIGHT: &'static str =
"\
Copyright (C) 2016-2018 Nev Delap - https://github.com/nevdelap/ned";
Copyright (C) 2016-2019 Nev Delap - https://github.com/nevdelap/ned";

static LICENSE: &'static str = "\
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>.
Expand Down

0 comments on commit 1a88225

Please sign in to comment.