From 7c14c72e9db6cfcd9ed13c924184012e00a651df Mon Sep 17 00:00:00 2001 From: mleku Date: Tue, 7 Oct 2025 15:38:46 +0100 Subject: [PATCH] Remove error return from `ToSliceOfSliceOfStrings` method in `tag` encoder and bump version to v0.10.4 --- pkg/encoders/tag/tags.go | 2 +- pkg/version/version | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pkg/encoders/tag/tags.go b/pkg/encoders/tag/tags.go index a6f7e71..3314315 100644 --- a/pkg/encoders/tag/tags.go +++ b/pkg/encoders/tag/tags.go @@ -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()) } diff --git a/pkg/version/version b/pkg/version/version index 000aadb..cbb38b1 100644 --- a/pkg/version/version +++ b/pkg/version/version @@ -1 +1 @@ -v0.10.3 \ No newline at end of file +v0.10.4 \ No newline at end of file