Compare commits

...

2 Commits

Author SHA1 Message Date
c3162fec95 v0.0.338
Some checks failed
Build Docker and Deploy / Run goext test-suite (push) Failing after 59s
2023-12-05 19:50:24 +01:00
1124aa781a v0.0.337
Some checks failed
Build Docker and Deploy / Run goext test-suite (push) Failing after 1m6s
2023-12-05 19:45:35 +01:00
2 changed files with 4 additions and 4 deletions

View File

@@ -101,9 +101,9 @@ func {{.EnumTypeName}}ValuesMeta() []enums.EnumMetaValue {
} }
{{if $hasDescr}} {{if $hasDescr}}
func {{.EnumTypeName}}ValuesMeta() []enums.EnumDescriptionMetaValue { func {{.EnumTypeName}}ValuesDescriptionMeta() []enums.EnumDescriptionMetaValue {
return []enums.EnumDescriptionMetaValue{ {{range .Values}} return []enums.EnumDescriptionMetaValue{ {{range .Values}}
{{.VarName}}.EnumDescriptionMetaValue(), {{end}} {{.VarName}}.DescriptionMeta(), {{end}}
} }
} }
{{end}} {{end}}

View File

@@ -1,5 +1,5 @@
package goext package goext
const GoextVersion = "0.0.336" const GoextVersion = "0.0.338"
const GoextVersionTimestamp = "2023-12-05T19:42:37+0100" const GoextVersionTimestamp = "2023-12-05T19:50:24+0100"