Bump version to point release and update changelog

This commit is contained in:
Justin Hawkins 2021-10-11 22:53:37 +10:30
parent f180900d79
commit 79d14c00bc
2 changed files with 8 additions and 1 deletions

View File

@ -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

View File

@ -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) {