diff --git a/CHANGELOG.md b/CHANGELOG.md index 150985e..baaa252 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,13 @@ All notable changes to this project will be documented in this file. ## [Unreleased] +## [v0.11.1] - 2021-10-11 + +- Improve logging and error handling +- Improve tests +- Fix problem where attachments too large for discord fail immediately and do not retry +- Fix problem with version checking + ## [v0.11.0] - 2021-10-10 - Switched to semantic versioning diff --git a/version/version.go b/version/version.go index ece417b..93b17f0 100644 --- a/version/version.go +++ b/version/version.go @@ -7,7 +7,7 @@ import ( "golang.org/x/mod/semver" ) -const CurrentVersion string = "v0.12.0" +const CurrentVersion string = "v0.11.1" func NewVersionAvailable(v string) bool { if !semver.IsValid(CurrentVersion) {