Skip to content

Commit

Permalink
v0.1.0!
Browse files Browse the repository at this point in the history
  • Loading branch information
lestrrat committed Jul 10, 2014
1 parent 9e486c7 commit b448d0e
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
5 changes: 5 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
Changes
=======

v0.1.0 - 10 Jul 2014
* Initial versioned release
4 changes: 3 additions & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ import (
"github.com/koron/gomigemo/migemo"
)

const version = "0.1.0"

// Does the grepping
func grep(r io.Reader, re *regexp.Regexp) error {
buf := bufio.NewReader(r)
Expand All @@ -38,7 +40,7 @@ func main() {

func _main() int {
flag.Usage = func() {
fmt.Fprintln(os.Stderr, "Usage: migemogrep [options] pattern [files...]")
fmt.Fprintf(os.Stderr, "migemogrep v%s\n\nUsage: migemogrep [options] pattern [files...]\n", version)
}
var dictPath = flag.String("d", "", "Alternate location to dictionary")

Expand Down

0 comments on commit b448d0e

Please sign in to comment.