chore(tunasync): bump version to 0.2-dev

This commit is contained in:
bigeagle 2016-12-12 23:23:00 +08:00
parent fd277388d5
commit 9ffb101cc7
No known key found for this signature in database
GPG Key ID: 9171A4571C27920A
3 changed files with 5 additions and 2 deletions

View File

@ -134,7 +134,7 @@ func main() {
app.Name = "tunasync"
app.Usage = "tunasync mirror job management tool"
app.EnableBashCompletion = true
app.Version = "0.1"
app.Version = tunasync.Version
app.Commands = []cli.Command{
{
Name: "manager",

View File

@ -325,7 +325,7 @@ func main() {
app := cli.NewApp()
app.EnableBashCompletion = true
app.Version = "0.1"
app.Version = tunasync.Version
app.Name = "tunasynctl"
app.Usage = "control client for tunasync manager"

3
internal/version.go Normal file
View File

@ -0,0 +1,3 @@
package internal
const Version string = "0.2-dev"