From dd99dea7adba674baa401e52362d6e330b50acf8 Mon Sep 17 00:00:00 2001 From: Bruce Marriner Date: Fri, 18 Oct 2019 11:23:41 -0500 Subject: [PATCH] Remove go1.13 from go.mod, bump version to v0.20.1 Go 1.13 was accidently added, this backs it back out. I don't think there's really much impact from this but I would prefer it not be in there for this release. --- discord.go | 2 +- go.mod | 2 -- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/discord.go b/discord.go index f1ba0ee..76f1ad9 100644 --- a/discord.go +++ b/discord.go @@ -21,7 +21,7 @@ import ( ) // VERSION of DiscordGo, follows Semantic Versioning. (http://semver.org/) -const VERSION = "0.20.0" +const VERSION = "0.20.1" // ErrMFA will be risen by New when the user has 2FA. var ErrMFA = errors.New("account has 2FA enabled") diff --git a/go.mod b/go.mod index 8cd2cf6..2ff8868 100644 --- a/go.mod +++ b/go.mod @@ -4,5 +4,3 @@ require ( github.com/gorilla/websocket v1.4.0 golang.org/x/crypto v0.0.0-20181030102418-4d3f4d9ffa16 ) - -go 1.13