1package version
2
3var (
4	// APIVersion dictates which version of the libmachine API this is.
5	APIVersion = 1
6
7	// ConfigVersion dictates which version of the config.json format is
8	// used. It needs to be bumped if there is a breaking change, and
9	// therefore migration, introduced to the config file format.
10	ConfigVersion = 3
11)
12