Skip to content

Commit

Permalink
bump version to v1.9.1
Browse files Browse the repository at this point in the history
  • Loading branch information
ayoisaiah committed Aug 9, 2023
1 parent d87399b commit 9bc9a8c
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 2 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## 1.9.1 (2023-02-09)

- Improve performance in dry-run mode (due to table rendering).
- Fix issue where files could be overwritten when `--fix-conflicts` is used.

## 1.9.0 (2023-02-02)

- Simple mode now prompts before executing.
Expand Down
2 changes: 1 addition & 1 deletion app.go
Original file line number Diff line number Diff line change
Expand Up @@ -279,7 +279,7 @@ or: FIND [REPLACE] [PATHS TO FILES AND DIRECTORIES...]`
},
Usage: "F2 is a command-line tool for batch renaming multiple files and directories quickly and safely.",
UsageText: usageText,
Version: "v1.9.0",
Version: "v1.9.1",
EnableBashCompletion: true,
Flags: []cli.Flag{
&cli.StringFlag{
Expand Down
2 changes: 2 additions & 0 deletions f2_test/f2_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -531,6 +531,8 @@ func TestShortHelp(t *testing.T) {
help := f2.ShortHelp(f2.NewApp())

if runtime.GOOS == internalos.Windows {
// TODO: due to line endings on Windows
// FIXME: Needs to be corrected instead of ignored
t.SkipNow()
}

Expand Down
2 changes: 1 addition & 1 deletion testdata/help.golden
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
F2 — Command-line bulk renaming tool [version v1.9.0]
F2 — Command-line bulk renaming tool [version v1.9.1]

Usage: FLAGS [OPTIONS] [PATHS TO FILES AND DIRECTORIES...]
or: FIND [REPLACE] [PATHS TO FILES AND DIRECTORIES...]
Expand Down

0 comments on commit 9bc9a8c

Please sign in to comment.