source: code/trunk/version.go@ 67

Last change on this file since 67 was 63, checked in by yakumo.izuru, 17 months ago

今すぐv1をリリースすべきでしょうか?

Signed-off-by: Izuru Yakumo <yakumo.izuru@…>

File size: 297 bytes
Line 
1package mai
2
3import (
4 "fmt"
5)
6
7var (
8 // Version release version
9 Version = "0.0.1"
10
11 // Commit will be overwritten automatically by the build system
12 Commit = "HEAD"
13)
14
15// FullVersion display the full version and build
16func FullVersion() string {
17 return fmt.Sprintf("%s@%s", Version, Commit)
18}
Note: See TracBrowser for help on using the repository browser.