-
Notifications
You must be signed in to change notification settings - Fork 950
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #790 from zzchun/0.2.0
fix: change pouch version to 0.2.0
- Loading branch information
Showing
2 changed files
with
6 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" |