Browse Source

Remove error return from `ToSliceOfSliceOfStrings` method in `tag` encoder and bump version to v0.10.4

main
mleku 3 months ago
parent
commit
7c14c72e9d
No known key found for this signature in database
  1. 2
      pkg/encoders/tag/tags.go
  2. 2
      pkg/version/version

2
pkg/encoders/tag/tags.go

@ -203,7 +203,7 @@ func (s *S) GetTagElement(i int) (t *T) { @@ -203,7 +203,7 @@ func (s *S) GetTagElement(i int) (t *T) {
//
// Iterates through each tag in the collection and converts its byte elements
// to strings, preserving the tag structure in the resulting nested slice.
func (s *S) ToSliceOfSliceOfStrings() (ss [][]string, err error) {
func (s *S) ToSliceOfSliceOfStrings() (ss [][]string) {
for _, v := range *s {
ss = append(ss, v.ToSliceOfStrings())
}

2
pkg/version/version

@ -1 +1 @@ @@ -1 +1 @@
v0.10.3
v0.10.4
Loading…
Cancel
Save