Skip to content

Commit acc8bf9

Browse files
authored
Release v3.9.2 (#1641)
* Release v3.9.2 * Prepare stable for version v3.9.2
1 parent 81ddb4e commit acc8bf9

File tree

39 files changed

+62
-62
lines changed

39 files changed

+62
-62
lines changed

cache/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ go 1.24.0
55
replace github.com/go-fries/fries/locker/v3 => ../locker
66

77
require (
8-
github.com/go-fries/fries/locker/v3 v3.9.1
8+
github.com/go-fries/fries/locker/v3 v3.9.2
99
github.com/stretchr/testify v1.11.1
1010
)
1111

cache/redis/go.mod

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@ replace (
1111
)
1212

1313
require (
14-
github.com/go-fries/fries/cache/v3 v3.9.1
15-
github.com/go-fries/fries/codec/json/v3 v3.9.1
16-
github.com/go-fries/fries/codec/v3 v3.9.1
17-
github.com/go-fries/fries/locker/redis/v3 v3.9.1
18-
github.com/go-fries/fries/locker/v3 v3.9.1
14+
github.com/go-fries/fries/cache/v3 v3.9.2
15+
github.com/go-fries/fries/codec/json/v3 v3.9.2
16+
github.com/go-fries/fries/codec/v3 v3.9.2
17+
github.com/go-fries/fries/locker/redis/v3 v3.9.2
18+
github.com/go-fries/fries/locker/v3 v3.9.2
1919
github.com/redis/go-redis/v9 v9.14.0
2020
github.com/stretchr/testify v1.11.1
2121
)

codec/json/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ go 1.24.0
55
replace github.com/go-fries/fries/codec/v3 => ../
66

77
require (
8-
github.com/go-fries/fries/codec/v3 v3.9.1
8+
github.com/go-fries/fries/codec/v3 v3.9.2
99
github.com/stretchr/testify v1.11.1
1010
)
1111

codec/msgpack/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ go 1.24.0
55
replace github.com/go-fries/fries/codec/v3 => ../
66

77
require (
8-
github.com/go-fries/fries/codec/v3 v3.9.1
8+
github.com/go-fries/fries/codec/v3 v3.9.2
99
github.com/stretchr/testify v1.11.1
1010
github.com/vmihailenco/msgpack/v5 v5.4.1
1111
)

codec/proto/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ go 1.24.0
55
replace github.com/go-fries/fries/codec/v3 => ../
66

77
require (
8-
github.com/go-fries/fries/codec/v3 v3.9.1
8+
github.com/go-fries/fries/codec/v3 v3.9.2
99
github.com/stretchr/testify v1.11.1
1010
google.golang.org/protobuf v1.36.9
1111
)

codec/sonic/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ replace github.com/go-fries/fries/codec/v3 => ../
66

77
require (
88
github.com/bytedance/sonic v1.14.1
9-
github.com/go-fries/fries/codec/v3 v3.9.1
9+
github.com/go-fries/fries/codec/v3 v3.9.2
1010
github.com/stretchr/testify v1.11.1
1111
)
1212

codec/xml/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ go 1.24.0
55
replace github.com/go-fries/fries/codec/v3 => ../
66

77
require (
8-
github.com/go-fries/fries/codec/v3 v3.9.1
8+
github.com/go-fries/fries/codec/v3 v3.9.2
99
github.com/stretchr/testify v1.11.1
1010
)
1111

codec/yaml/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ go 1.24.0
55
replace github.com/go-fries/fries/codec/v3 => ../
66

77
require (
8-
github.com/go-fries/fries/codec/v3 v3.9.1
8+
github.com/go-fries/fries/codec/v3 v3.9.2
99
github.com/stretchr/testify v1.11.1
1010
gopkg.in/yaml.v3 v3.0.1
1111
)

coroutines/go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,13 @@ replace (
99
)
1010

1111
require (
12-
github.com/go-fries/fries/support/v3 v3.9.1
12+
github.com/go-fries/fries/support/v3 v3.9.2
1313
github.com/stretchr/testify v1.11.1
1414
)
1515

1616
require (
1717
github.com/davecgh/go-spew v1.1.1 // indirect
18-
github.com/go-fries/fries/errors/v3 v3.9.1 // indirect
18+
github.com/go-fries/fries/errors/v3 v3.9.2 // indirect
1919
github.com/go-kratos/kratos/v2 v2.9.1 // indirect
2020
github.com/pmezard/go-difflib v1.0.0 // indirect
2121
golang.org/x/sys v0.36.0 // indirect

crontab/example/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ replace github.com/go-fries/fries/crontab/v3 => ../
66

77
require (
88
github.com/flc1125/go-cron/v4 v4.6.2
9-
github.com/go-fries/fries/crontab/v3 v3.9.1
9+
github.com/go-fries/fries/crontab/v3 v3.9.2
1010
github.com/go-kratos/kratos/v2 v2.9.1
1111
)
1212

0 commit comments

Comments
 (0)