Skip to content

Commit

Permalink
Release v0.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
bittersweet committed Jul 27, 2016
1 parent 74c6f24 commit a780c7c
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
7 changes: 7 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Notes Changelog

## 0.7.0

- Added searching within all notes with `search` or `s`. Use `$ notes search
xargs` to print notes from all files that match.
- Refactored note parsing so you can have newlines within 1 note, thanks
@mongrelion for [the bugreport](https://github.com/bittersweet/notes/issues/4).

## 0.6.2

- Fixed opening notes that broke in 0.6.1 because of the removal of the trailing slash :-).
Expand Down
2 changes: 1 addition & 1 deletion notes.go
Original file line number Diff line number Diff line change
Expand Up @@ -270,7 +270,7 @@ func getNote(path string) string {
func main() {
app := cli.NewApp()
app.Name = "notes"
app.Version = "0.6.2"
app.Version = "0.7.0"
app.Usage = "Store your thoughts on all sorts of subjects"
app.EnableBashCompletion = true
app.BashComplete = func(c *cli.Context) {
Expand Down

0 comments on commit a780c7c

Please sign in to comment.