Add ToSliceOfStrings method to tag encoder and bump version to v0.10.2
Some checks failed
Go / build (push) Has been cancelled

This commit is contained in:
2025-10-07 15:32:07 +01:00
parent ccffeb902c
commit c1acf0deaa
2 changed files with 8 additions and 1 deletions

View File

@@ -156,3 +156,10 @@ func (t *T) Relay() (key []byte) {
}
return
}
func (t *T) ToSliceOfStrings() (s []string) {
for _, v := range t.T {
s = append(s, string(v))
}
return
}

View File

@@ -1 +1 @@
v0.10.1
v0.10.2