mirror of
https://github.com/docker/docs.git
synced 2026-03-31 16:28:59 +07:00
13 lines
281 B
Go
13 lines
281 B
Go
package version
|
|
|
|
var (
|
|
// VERSION should be updated by hand at each release
|
|
VERSION = "1.1.0"
|
|
|
|
// GITCOMMIT will be overwritten automatically by the build system
|
|
GITCOMMIT = "HEAD"
|
|
|
|
// BUILDTIME will be overwritten automatically by the build system
|
|
BUILDTIME = "<unknown>"
|
|
)
|