Files
docker-machine/version/version.go
Evan Hazlett c2b5f06209 bump 0.4.0-rc2
Signed-off-by: Evan Hazlett <ejhazlett@gmail.com>
2015-08-04 11:38:18 -04:00

15 lines
411 B
Go

package version
var (
// ConfigVersion dictates which version of the config.json format is
// used. It needs to be bumped if there is a breaking change, and
// therefore migration, introduced to the config file format.
ConfigVersion = 1
// VERSION should be updated by hand at each release
Version = "0.4.0-rc2"
// GitCommit will be overwritten automatically by the build system
GitCommit = "HEAD"
)