From 4d87d16ce273dc62412124702df3de7d3ce36dc7 Mon Sep 17 00:00:00 2001 From: Tristan Cartledge Date: Fri, 17 Jan 2025 14:17:47 +1000 Subject: [PATCH] fix: add versioning for generated examples --- lockfile.go | 1 + 1 file changed, 1 insertion(+) diff --git a/lockfile.go b/lockfile.go index b3f894c..19a31d3 100644 --- a/lockfile.go +++ b/lockfile.go @@ -13,6 +13,7 @@ type LockFile struct { Features map[string]map[string]string `yaml:"features,omitempty"` GeneratedFiles []string `yaml:"generatedFiles,omitempty"` Examples Examples `yaml:"examples,omitempty"` + ExamplesVersion string `yaml:"examplesVersion,omitempty"` GeneratedTests GeneratedTests `yaml:"generatedTests,omitempty"` AdditionalProperties map[string]any `yaml:",inline"` // Captures any additional properties that are not explicitly defined for backwards/forwards compatibility }