Skip to content

Commit

Permalink
V1.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Swatto committed Jun 24, 2015
1 parent b13e3ae commit 1833a18
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 16 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
all:
rm -fr build
goxc -bc="linux,windows,darwin" -d=./build -pv=1.2.0
goxc -bc="linux,windows,darwin" -d=./build -pv=1.3.0
rmdir debian

clean:
Expand Down
27 changes: 14 additions & 13 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,25 +28,26 @@ USAGE:
td [global options] command [command options] [arguments...]
VERSION:
1.2.0
1.3.0
AUTHOR:
Gaël Gillard
Gaël Gillard - <gael@gaelgillard.com>
COMMANDS:
add, a Add a new todo
modify, m Modify the text of an existing todo
toggle, t Toggle the status of a todo by giving his id
clean Remove finished todos from the list
reorder, r Reset ids of todo
search, s Search a string in all todos
help, h Shows a list of commands or help for one command
init, i Initialize a collection of todos
add, a Add a new todo
modify, m Modify the text of an existing todo
toggle, t Toggle the status of a todo by giving his id
clean Remove finished todos from the list
reorder, r Reset ids of todo
search, s Search a string in all todos
help, h Shows a list of commands or help for one command
GLOBAL OPTIONS:
--done, -d print done todos
--all, -a print all todos
--help, -h show help
--version, -v print the version
--done, -d print done todos
--all, -a print all todos
--help, -h show help
--version, -v print the version
```

## License
Expand Down
4 changes: 2 additions & 2 deletions cli.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ func main() {
app := cli.NewApp()
app.Name = "td"
app.Usage = "Your todos manager"
app.Version = "1.2.0"
app.Version = "1.3.0"
app.Author = "Gaël Gillard"
app.Email = ""
app.Email = "gael@gaelgillard.com"
app.Flags = []cli.Flag{
cli.BoolFlag{
Name: "done, d",
Expand Down

0 comments on commit 1833a18

Please sign in to comment.