diff --git a/internal/api/api.go b/internal/api/api.go index 6dacca4..f61cb5c 100644 --- a/internal/api/api.go +++ b/internal/api/api.go @@ -36,7 +36,7 @@ type resourceIndex struct { func GetApp() *cli.App { return &cli.App{ Name: "tdsh-api", - Version: "0.2.0", + Version: "0.3.0", Usage: "Trandoshan API process", Flags: []cli.Flag{ logging.GetLogFlag(), diff --git a/internal/api/api_test.go b/internal/api/api_test.go index 6221380..a479602 100644 --- a/internal/api/api_test.go +++ b/internal/api/api_test.go @@ -12,4 +12,4 @@ func TestExtractTitle(t *testing.T) { if val := extractTitle(c); val != "" { t.Errorf("No matches should have been returned") } -} \ No newline at end of file +} diff --git a/internal/crawler/crawler.go b/internal/crawler/crawler.go index b05eacf..e917645 100644 --- a/internal/crawler/crawler.go +++ b/internal/crawler/crawler.go @@ -21,7 +21,7 @@ const defaultUserAgent = "Mozilla/5.0 (Windows NT 10.0; rv:68.0) Gecko/20100101 func GetApp() *cli.App { return &cli.App{ Name: "tdsh-crawler", - Version: "0.2.0", + Version: "0.3.0", Usage: "Trandoshan crawler process", Flags: []cli.Flag{ logging.GetLogFlag(), diff --git a/internal/feeder/feeder.go b/internal/feeder/feeder.go index 5102c07..575e68b 100644 --- a/internal/feeder/feeder.go +++ b/internal/feeder/feeder.go @@ -12,7 +12,7 @@ import ( func GetApp() *cli.App { return &cli.App{ Name: "tdsh-feeder", - Version: "0.2.0", + Version: "0.3.0", Usage: "Trandoshan feeder process", Flags: []cli.Flag{ logging.GetLogFlag(), diff --git a/internal/persister/persister.go b/internal/persister/persister.go index c210b97..4efc053 100644 --- a/internal/persister/persister.go +++ b/internal/persister/persister.go @@ -15,7 +15,7 @@ import ( func GetApp() *cli.App { return &cli.App{ Name: "tdsh-persister", - Version: "0.2.0", + Version: "0.3.0", Usage: "Trandoshan persister process", Flags: []cli.Flag{ logging.GetLogFlag(), diff --git a/internal/scheduler/scheduler.go b/internal/scheduler/scheduler.go index fa92385..7fbc384 100644 --- a/internal/scheduler/scheduler.go +++ b/internal/scheduler/scheduler.go @@ -19,7 +19,7 @@ import ( func GetApp() *cli.App { return &cli.App{ Name: "tdsh-scheduler", - Version: "0.2.0", + Version: "0.3.0", Usage: "Trandoshan scheduler process", Flags: []cli.Flag{ logging.GetLogFlag(),