Skip to content

Commit

Permalink
Merge pull request #790 from zzchun/0.2.0
Browse files Browse the repository at this point in the history
fix: change pouch version to 0.2.0
  • Loading branch information
allencloud authored Feb 28, 2018
2 parents ef8c333 + f05011f commit f435103
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion daemon/mgr/system.go
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ func (mgr *SystemManager) Version() (types.SystemVersion, error) {
APIVersion: version.APIVersion,
Arch: runtime.GOARCH,
BuildTime: version.BuildTime,
GitCommit: "",
GitCommit: version.GitCommit,
GoVersion: version.GOVersion,
// TODO: add a pkg to support getting kernel version
// KernelVersion: kernel.Version(),
Expand Down
10 changes: 5 additions & 5 deletions version/version.go
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
package version

import "time"

// Version represents the version of pouchd.
const Version = "0.1.0"
const Version = "0.2.0"

// BuildTime is the time when this binary of daemon is built
// FIXME: this is dynamical. We need a fixed build time.
var BuildTime = time.Now().Format(time.RFC3339Nano)
var BuildTime = "2018-03-02T08:00:00.0+08:00"

// APIVersion means the api version daemon serves
var APIVersion = "1.24"

// GOVersion is the go version to build Pouch
var GOVersion = "go1.9.1"

// GitCommit is the commit id to build Pouch
var GitCommit = "e4f8150ad1359df43c3d1902018549d32cbc6eeb"

0 comments on commit f435103

Please sign in to comment.