From 95e8b19682072b6cdd91e78d71c9b618b9c2e5f9 Mon Sep 17 00:00:00 2001 From: Mark Mulder Date: Thu, 7 Apr 2016 16:14:21 +0200 Subject: [PATCH] Release 0.6.2 --- Changelog.md | 4 ++++ notes.go | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/Changelog.md b/Changelog.md index 8a163ff..60c6a5d 100644 --- a/Changelog.md +++ b/Changelog.md @@ -1,5 +1,9 @@ # Notes Changelog +## 0.6.2 + +- Fixed opening notes that broke in 0.6.1 because of the removal of the trailing slash :-). + ## 0.6.1 - Fixed using a custom `NOTESDIR` not working without a trailing slash. diff --git a/notes.go b/notes.go index 36549e1..3e64716 100644 --- a/notes.go +++ b/notes.go @@ -170,7 +170,7 @@ func getNote(path string) string { func main() { app := cli.NewApp() app.Name = "notes" - app.Version = "0.6.1" + app.Version = "0.6.2" app.Usage = "Store your thoughts on all sorts of subjects" app.Action = func(c *cli.Context) { note := c.Args().First()