diff --git a/Changelog.md b/Changelog.md index 60c6a5d..0cd87a6 100644 --- a/Changelog.md +++ b/Changelog.md @@ -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 :-). diff --git a/notes.go b/notes.go index 3bb4917..a229898 100644 --- a/notes.go +++ b/notes.go @@ -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) {