diff --git a/Readme.md b/Readme.md index e503a80..a785a1a 100644 --- a/Readme.md +++ b/Readme.md @@ -6,7 +6,7 @@ A simple RSS client that parses feeds and then sends them as emails via SMTP. Current Status: - Release - 0.2.0-alpha + Release - 0.1.0 Bugs - Probably ## Download @@ -25,6 +25,16 @@ grue import rss2email.cfg grue add ``` +* Remove a Feed from Config: +``` +grue delete +``` + +* List Feeds in Config: +``` +grue list +``` + * Fetch Feeds as cron job: ``` */5 * * * * grue fetch diff --git a/grue.go b/grue.go index 5c22038..11f7ff3 100644 --- a/grue.go +++ b/grue.go @@ -10,7 +10,7 @@ import ( "github.com/c-14/grue/config" ) -const version = "0.2.0-alpha" +const version = "0.1.0" func usage() string { return `usage: grue [--help] {add|delete|fetch|import|init_cfg|list|rename} ...