File tree Expand file tree Collapse file tree 4 files changed +7
-6
lines changed Expand file tree Collapse file tree 4 files changed +7
-6
lines changed Original file line number Diff line number Diff line change 1
- # unreleased
1
+ # v0.8.2 (2024-11-16)
2
2
3
3
* * (ffmpeg)* Added wrapper functions for ` ffprobe ` .
4
4
* * (emojirunes)* Added method to check if a string is only emojis.
5
5
* * (unicodeurls)* Updated data sheets used by emojirunes, variationselectors
6
6
and other packages to Unicode 16.
7
+ * * (dbutil)* Added support for mass inserts with no static parameters.
7
8
8
9
# v0.8.1 (2024-10-16)
9
10
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ require (
13
13
golang.org/x/exp v0.0.0-20241108190413-2d47ceb2692f
14
14
golang.org/x/sys v0.27.0
15
15
golang.org/x/text v0.20.0
16
- google.golang.org/protobuf v1.35.1
16
+ google.golang.org/protobuf v1.35.2
17
17
gopkg.in/yaml.v3 v3.0.1
18
18
)
19
19
Original file line number Diff line number Diff line change @@ -34,8 +34,8 @@ golang.org/x/sys v0.27.0 h1:wBqf8DvsY9Y/2P8gAfPDEYNuS30J4lPHJxXSb/nJZ+s=
34
34
golang.org/x/sys v0.27.0 /go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA =
35
35
golang.org/x/text v0.20.0 h1:gK/Kv2otX8gz+wn7Rmb3vT96ZwuoxnQlY+HlJVj7Qug =
36
36
golang.org/x/text v0.20.0 /go.mod h1:D4IsuqiFMhST5bX19pQ9ikHC2GsaKyk/oF+pn3ducp4 =
37
- google.golang.org/protobuf v1.35.1 h1:m3LfL6/Ca+fqnjnlqQXNpFPABW1UD7mjh8KO2mKFytA =
38
- google.golang.org/protobuf v1.35.1 /go.mod h1:9fA7Ob0pmnwhb644+1+CVWFRbNajQ6iRojtC/QF5bRE =
37
+ google.golang.org/protobuf v1.35.2 h1:8Ar7bF+apOIoThw1EdZl0p1oWvMqTHmpA2fRTyZO8io =
38
+ google.golang.org/protobuf v1.35.2 /go.mod h1:9fA7Ob0pmnwhb644+1+CVWFRbNajQ6iRojtC/QF5bRE =
39
39
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405 h1:yhCVgyC4o1eVCa2tZl7eS0r+SDo693bJlVdllGtEeKM =
40
40
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405 /go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0 =
41
41
gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA =
Original file line number Diff line number Diff line change 6
6
7
7
package util
8
8
9
- const Version = "v0.8.1 "
9
+ const Version = "v0.8.2 "
10
10
11
11
func VersionArray () [3 ]uint {
12
- return [3 ]uint {0 , 8 , 0 }
12
+ return [3 ]uint {0 , 8 , 2 }
13
13
}
You can’t perform that action at this time.
0 commit comments