feat(parser): support multiple values per metadata key in Task

BREAKING CHANGE: The Task struct's Metadata field now maps to slices of
strings (map[string][]string) instead of single strings. This allows
tasks to have multiple values for the same metadata key. All code
interacting with Metadata must be updated to handle slices. Version
bumped to v3.0.0.
This commit is contained in:
2025-12-17 00:16:16 +01:00
parent bfb1bb3433
commit daffdf4441
2 changed files with 34 additions and 20 deletions

View File

@@ -14,7 +14,7 @@ var (
inputFile string
outputFile string
debug bool
version = "v2.0.0"
version = "v3.0.0"
)
func main() {