Compare commits

..

2 Commits

Author SHA1 Message Date
5a8d7110e4 v0.0.535
All checks were successful
Build Docker and Deploy / Run goext test-suite (push) Successful in 2m52s
2024-10-22 09:41:59 +02:00
d47c84cd47 v0.0.534
Some checks failed
Build Docker and Deploy / Run goext test-suite (push) Has been cancelled
2024-10-22 09:40:53 +02:00
4 changed files with 6 additions and 6 deletions

View File

@@ -171,7 +171,7 @@ func (i *{{.Name}}) String() string {
if i == nil {
return "<nil>"
}
return string(i)
return string(*i)
}
func (i {{.Name}}) Prefix() string {

View File

@@ -70,10 +70,10 @@ func (e {{.EnumTypeName}}) ValuesMeta() []enums.EnumMetaValue {
{{if $hasStr}}
func (e *{{.EnumTypeName}}) String() string {
if i == nil {
if e == nil {
return "<nil>"
}
return string(e)
return string(*e)
}
{{end}}

View File

@@ -25,7 +25,7 @@ func (i *{{.Name}}) String() string {
if i == nil {
return "<nil>"
}
return string(i)
return string(*i)
}
func (i {{.Name}}) ObjID() (primitive.ObjectID, error) {

View File

@@ -1,5 +1,5 @@
package goext
const GoextVersion = "0.0.533"
const GoextVersion = "0.0.535"
const GoextVersionTimestamp = "2024-10-22T09:36:40+0200"
const GoextVersionTimestamp = "2024-10-22T09:41:59+0200"