Files
docker-machine/libmachine/version/version.go
Olivier Gambier d2ada6488c Lint
Signed-off-by: Olivier Gambier <olivier@docker.com>
2015-11-05 13:34:07 -08:00

12 lines
330 B
Go

package version
var (
// APIVersion dictates which version of the libmachine API this is.
APIVersion = 1
// 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 = 3
)