From 79d14c00bc60c2d2de3dafe2e93ba7b9cf10ce41 Mon Sep 17 00:00:00 2001 From: Justin Hawkins Date: Mon, 11 Oct 2021 22:53:37 +1030 Subject: [PATCH] Bump version to point release and update changelog --- CHANGELOG.md | 7 +++++++ version/version.go | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) 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) {