From 035c5b8ddc7f999bd43fec1ebdfda64e8ad3e716 Mon Sep 17 00:00:00 2001 From: hz Date: Mon, 25 Mar 2024 14:13:54 +0800 Subject: [PATCH] updated store ref in sub-tests go.mod --- codecs/hcl/test/go.mod | 6 +++--- codecs/hjson/test/go.mod | 6 +++--- codecs/json/test/go.mod | 6 +++--- codecs/nestext/test/go.mod | 6 +++--- codecs/toml/go.mod | 2 +- codecs/toml/go.sum | 4 ++++ codecs/yaml/test/go.mod | 6 +++--- 7 files changed, 20 insertions(+), 16 deletions(-) diff --git a/codecs/hcl/test/go.mod b/codecs/hcl/test/go.mod index 6a1b677..737d24b 100644 --- a/codecs/hcl/test/go.mod +++ b/codecs/hcl/test/go.mod @@ -9,9 +9,9 @@ replace github.com/hedzr/store/providers/file => ../../../providers/file replace github.com/hedzr/store/codecs/hcl => ../ require ( - github.com/hedzr/store v0.5.1 - github.com/hedzr/store/codecs/hcl v0.0.0-20240309055652-9bfe2570640d - github.com/hedzr/store/providers/file v0.0.0-20240309055652-9bfe2570640d + github.com/hedzr/store v1.0.0 + github.com/hedzr/store/codecs/hcl v1.0.0 + github.com/hedzr/store/providers/file v1.0.0 github.com/stretchr/testify v1.9.0 ) diff --git a/codecs/hjson/test/go.mod b/codecs/hjson/test/go.mod index 515ffbb..843db61 100644 --- a/codecs/hjson/test/go.mod +++ b/codecs/hjson/test/go.mod @@ -10,9 +10,9 @@ replace github.com/hedzr/store/codecs/hjson => ../ require ( github.com/davecgh/go-spew v1.1.1 - github.com/hedzr/store v0.5.1 - github.com/hedzr/store/codecs/hjson v0.0.0-20240309055652-9bfe2570640d - github.com/hedzr/store/providers/file v0.0.0-20240309055652-9bfe2570640d + github.com/hedzr/store v1.0.0 + github.com/hedzr/store/codecs/hjson v1.0.0 + github.com/hedzr/store/providers/file v1.0.0 github.com/hjson/hjson-go/v4 v4.4.0 github.com/stretchr/testify v1.9.0 ) diff --git a/codecs/json/test/go.mod b/codecs/json/test/go.mod index 5751ca4..09d2bf1 100644 --- a/codecs/json/test/go.mod +++ b/codecs/json/test/go.mod @@ -9,9 +9,9 @@ replace github.com/hedzr/store/providers/file => ../../../providers/file replace github.com/hedzr/store/codecs/json => ../ require ( - github.com/hedzr/store v0.5.1 - github.com/hedzr/store/codecs/json v0.0.0-20240309055652-9bfe2570640d - github.com/hedzr/store/providers/file v0.0.0-20240309055652-9bfe2570640d + github.com/hedzr/store v1.0.0 + github.com/hedzr/store/codecs/json v1.0.0 + github.com/hedzr/store/providers/file v1.0.0 github.com/stretchr/testify v1.9.0 ) diff --git a/codecs/nestext/test/go.mod b/codecs/nestext/test/go.mod index c4a01af..098623d 100644 --- a/codecs/nestext/test/go.mod +++ b/codecs/nestext/test/go.mod @@ -9,9 +9,9 @@ replace github.com/hedzr/store/providers/file => ../../../providers/file replace github.com/hedzr/store/codecs/nestext => ../ require ( - github.com/hedzr/store v0.5.1 - github.com/hedzr/store/codecs/nestext v0.0.0-20240309055652-9bfe2570640d - github.com/hedzr/store/providers/file v0.0.0-20240309055652-9bfe2570640d + github.com/hedzr/store v1.0.0 + github.com/hedzr/store/codecs/nestext v1.0.0 + github.com/hedzr/store/providers/file v1.0.0 github.com/stretchr/testify v1.9.0 ) diff --git a/codecs/toml/go.mod b/codecs/toml/go.mod index a2f15c4..2b73b66 100644 --- a/codecs/toml/go.mod +++ b/codecs/toml/go.mod @@ -20,7 +20,7 @@ go 1.21 require ( github.com/hedzr/store v1.0.0 - github.com/pelletier/go-toml/v2 v2.1.1 + github.com/pelletier/go-toml/v2 v2.2.0 ) require ( diff --git a/codecs/toml/go.sum b/codecs/toml/go.sum index 2fabbda..47370f9 100644 --- a/codecs/toml/go.sum +++ b/codecs/toml/go.sum @@ -11,15 +11,19 @@ github.com/hedzr/store v1.0.0 h1:HZ6LJA6/M3ypsVlSixKfWbY7IOh2hJ6L95ZWj2McZKQ= github.com/hedzr/store v1.0.0/go.mod h1:3tFSwPGzkDxAOVyHoBa8j9SPPMoN4b6c8b5IR01VCPM= github.com/pelletier/go-toml/v2 v2.1.1 h1:LWAJwfNvjQZCFIDKWYQaM62NcYeYViCmWIwmOStowAI= github.com/pelletier/go-toml/v2 v2.1.1/go.mod h1:tJU2Z3ZkXwnxa4DPO899bsyIoywizdUvyaeZurnPPDc= +github.com/pelletier/go-toml/v2 v2.2.0 h1:QLgLl2yMN7N+ruc31VynXs1vhMZa7CeHHejIeBAsoHo= +github.com/pelletier/go-toml/v2 v2.2.0/go.mod h1:1t835xjRzz80PqgE6HHgN2JOsmgYu/h4qDAS4n929Rs= github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM= github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= github.com/stretchr/objx v0.4.0/go.mod h1:YvHI0jy2hoMjB+UWwv71VJQ9isScKT/TqJzVSSt89Yw= github.com/stretchr/objx v0.5.0/go.mod h1:Yh+to48EsGEfYuaHDzXPcE3xhTkx73EhmCGUpEOglKo= +github.com/stretchr/objx v0.5.2/go.mod h1:FRsXN1f5AsAjCGJKqEizvkpNtU+EGNCLh3NxZ/8L+MA= github.com/stretchr/testify v1.7.1/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg= github.com/stretchr/testify v1.8.0/go.mod h1:yNjHg4UonilssWZ8iaSj1OCr/vHnekPRkoO+kdMU+MU= github.com/stretchr/testify v1.8.4 h1:CcVxjf3Q8PM0mHUKJCdn+eZZtm5yQwehR5yeSVQQcUk= github.com/stretchr/testify v1.8.4/go.mod h1:sz/lmYIOXD/1dqDmKjjqLyZ2RngseejIcXlSw2iwfAo= +github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY= golang.org/x/crypto v0.21.0 h1:X31++rzVUdKhX5sWmSOFZxx8UW/ldWx55cbf08iNAMA= golang.org/x/crypto v0.21.0/go.mod h1:0BP7YvVV9gBbVKyeTG0Gyn+gZm94bibOW5BjDEYAOMs= golang.org/x/net v0.22.0 h1:9sGLhx7iRIHEiX0oAJ3MRZMUCElJgy7Br1nO+AMN3Tc= diff --git a/codecs/yaml/test/go.mod b/codecs/yaml/test/go.mod index 2913154..f778d07 100644 --- a/codecs/yaml/test/go.mod +++ b/codecs/yaml/test/go.mod @@ -9,9 +9,9 @@ replace github.com/hedzr/store/providers/file => ../../../providers/file replace github.com/hedzr/store/codecs/yaml => ../ require ( - github.com/hedzr/store v0.5.1 - github.com/hedzr/store/codecs/yaml v0.0.0-20240309055652-9bfe2570640d - github.com/hedzr/store/providers/file v0.0.0-20240309055652-9bfe2570640d + github.com/hedzr/store v1.0.0 + github.com/hedzr/store/codecs/yaml v1.0.0 + github.com/hedzr/store/providers/file v1.0.0 github.com/stretchr/testify v1.9.0 )