Skip to content

Commit 5b69581

Browse files
committed
Bump version to v0.8.2
1 parent 636f864 commit 5b69581

File tree

4 files changed

+7
-6
lines changed

4 files changed

+7
-6
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
1-
# unreleased
1+
# v0.8.2 (2024-11-16)
22

33
* *(ffmpeg)* Added wrapper functions for `ffprobe`.
44
* *(emojirunes)* Added method to check if a string is only emojis.
55
* *(unicodeurls)* Updated data sheets used by emojirunes, variationselectors
66
and other packages to Unicode 16.
7+
* *(dbutil)* Added support for mass inserts with no static parameters.
78

89
# v0.8.1 (2024-10-16)
910

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ require (
1313
golang.org/x/exp v0.0.0-20241108190413-2d47ceb2692f
1414
golang.org/x/sys v0.27.0
1515
golang.org/x/text v0.20.0
16-
google.golang.org/protobuf v1.35.1
16+
google.golang.org/protobuf v1.35.2
1717
gopkg.in/yaml.v3 v3.0.1
1818
)
1919

go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@ golang.org/x/sys v0.27.0 h1:wBqf8DvsY9Y/2P8gAfPDEYNuS30J4lPHJxXSb/nJZ+s=
3434
golang.org/x/sys v0.27.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA=
3535
golang.org/x/text v0.20.0 h1:gK/Kv2otX8gz+wn7Rmb3vT96ZwuoxnQlY+HlJVj7Qug=
3636
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=
3939
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405 h1:yhCVgyC4o1eVCa2tZl7eS0r+SDo693bJlVdllGtEeKM=
4040
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
4141
gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA=

util.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66

77
package util
88

9-
const Version = "v0.8.1"
9+
const Version = "v0.8.2"
1010

1111
func VersionArray() [3]uint {
12-
return [3]uint{0, 8, 0}
12+
return [3]uint{0, 8, 2}
1313
}

0 commit comments

Comments
 (0)