diff --git a/changelog.md b/changelog.md index b781298..ed8761b 100644 --- a/changelog.md +++ b/changelog.md @@ -1,5 +1,10 @@ # Changelog +## 5.0.1 - 2020-03-08 +### Changed +- Updated `go-twitch-irc` lib to v2.2.2 + + ## 5.0.0 - 2020-01-11 ### Added - Twitch point song request feature with dedicated web server and twitch diff --git a/go.mod b/go.mod index 7482188..154df17 100644 --- a/go.mod +++ b/go.mod @@ -2,7 +2,7 @@ module galched-bot require ( github.com/bwmarrin/discordgo v0.20.1 - github.com/gempir/go-twitch-irc/v2 v2.2.1 + github.com/gempir/go-twitch-irc/v2 v2.2.2 github.com/gorilla/websocket v1.4.1 // indirect github.com/pkg/errors v0.8.1 github.com/stretchr/testify v1.3.0 // indirect diff --git a/go.sum b/go.sum index a906d49..bf28298 100644 --- a/go.sum +++ b/go.sum @@ -10,6 +10,8 @@ github.com/davecgh/go-spew v1.1.0 h1:ZDRjVQ15GmhC3fiQ8ni8+OwkZQO4DARzQgrnXU1Liz8 github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/gempir/go-twitch-irc/v2 v2.2.1 h1:jMiEgw6zzrgiz4viG7lgj148J6enLls5aicF+zsi1bk= github.com/gempir/go-twitch-irc/v2 v2.2.1/go.mod h1:0HXoEr9l7gNjwajosptV0w0xGpHeU6gsD7JDlfvjTYI= +github.com/gempir/go-twitch-irc/v2 v2.2.2 h1:uzinel2qApXL1UVfr3QcZ3dJsf+YU+PaUp0qJk03qNo= +github.com/gempir/go-twitch-irc/v2 v2.2.2/go.mod h1:0HXoEr9l7gNjwajosptV0w0xGpHeU6gsD7JDlfvjTYI= github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b/go.mod h1:SBH7ygxi8pfUlaOkMMuAQtPIUF8ecWP5IEl/CR7VP2Q= github.com/golang/mock v1.1.1/go.mod h1:oTYuIxOrZwtPieC+H1uAHpcLFnEyAGVDL/k47Jfbm0A= github.com/golang/mock v1.2.0/go.mod h1:oTYuIxOrZwtPieC+H1uAHpcLFnEyAGVDL/k47Jfbm0A= diff --git a/modules/settings/settings.go b/modules/settings/settings.go index b38af64..2f4e283 100644 --- a/modules/settings/settings.go +++ b/modules/settings/settings.go @@ -8,7 +8,7 @@ import ( ) const ( - version = "5.0.0" + version = "5.0.1" twitchUser = "galchedbot" twitchIRCRoom = "galched" discordTokenPath = "./tokens/.discordtoken"