Skip to content

Commit

Permalink
Tag v1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Dominik Schulz committed May 31, 2017
1 parent a9c6b74 commit 4857b8a
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 8 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## Next Release
## 1.1.0 / 2017-05-31

* [FEATURE] Support templates [#1]
* [FEATURE] QR Code output [#64]
Expand All @@ -10,7 +10,7 @@
* [ENHANCEMENT] Support symlinks [#41]
* [ENHANCEMENT] Add nocolor config flag [#33]
* [ENHANCEMENT] Accept args for editor [#30]
* [BUGFIX] Build fixes for Windwos [#14]
* [BUGFIX] Build fixes for Windows [#14]

## 1.0.2 / 2017-03-24

Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.1.0-rc2
1.1.0
7 changes: 2 additions & 5 deletions password/fsck.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,8 @@ func (s *Store) Fsck(prefix string, check, force bool) (map[string]uint64, error
countFn := func(t string) {
counts[t]++
}
if err := filepath.Walk(s.path, s.mkStoreWalkerFsckFunc(prefix, check, force, storeRec, s.fsckFunc, countFn)); err != nil {
return counts, err
}

return counts, nil
err = filepath.Walk(s.path, s.mkStoreWalkerFsckFunc(prefix, check, force, storeRec, s.fsckFunc, countFn))
return counts, err
}

// mkStoreFsckWalkerFunc create a func to walk a (sub)store, i.e. list it's content
Expand Down

0 comments on commit 4857b8a

Please sign in to comment.