|
|
@@ -6,6 +6,8 @@
|
|
|
// This source code is licensed under the MIT license found in the
|
|
|
// LICENSE file in the root directory of this source tree.
|
|
|
|
|
|
+// Gitote (Git + Rem(ote) = Gitote) - Software version control made simple.
|
|
|
+
|
|
|
/*
|
|
|
|
|
|
_____ _ _ _
|
|
|
@@ -17,7 +19,7 @@
|
|
|
|
|
|
*/
|
|
|
|
|
|
-package main
|
|
|
+package main // import "gitote/gitote"
|
|
|
|
|
|
import (
|
|
|
"gitote/gitote/cmd"
|
|
|
@@ -28,10 +30,10 @@ import (
|
|
|
"github.com/urfave/cli"
|
|
|
)
|
|
|
|
|
|
-// AppVer represents the version of Gitote
|
|
|
+// AppVer holds the current Gitote version
|
|
|
const AppVer = "1.0.2-prod-rc.2"
|
|
|
|
|
|
-// APIVer represents the API version of Gitote
|
|
|
+// APIVer holds the current Gitote API version
|
|
|
const APIVer = "v1"
|
|
|
|
|
|
func init() {
|