mirror of
https://github.com/tuna/tunasync.git
synced 2025-12-25 22:02:46 +00:00
chore(tunasync): bump version to 0.2-dev
This commit is contained in:
parent
fd277388d5
commit
9ffb101cc7
|
|
@ -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",
|
||||
|
|
|
|||
|
|
@ -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"
|
||||
|
||||
|
|
|
|||
|
|
@ -0,0 +1,3 @@
|
|||
package internal
|
||||
|
||||
const Version string = "0.2-dev"
|
||||
Loading…
Reference in New Issue