diff --git a/CHANGELOG.md b/CHANGELOG.md index 895736a9..0ca5ffbd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/). +## 11.0.1 - 2023-08-01 + +### Changed + +* Fixed error handling behaviour in transactions. Closes #164 + ## 11.0.0 - 2023-07-25 ### Changed diff --git a/lib/imap/backup/version.rb b/lib/imap/backup/version.rb index 141146ef..cb0eacf7 100644 --- a/lib/imap/backup/version.rb +++ b/lib/imap/backup/version.rb @@ -3,7 +3,7 @@ module Imap; end module Imap::Backup MAJOR = 11 MINOR = 0 - REVISION = 0 + REVISION = 1 PRE = nil VERSION = [MAJOR, MINOR, REVISION, PRE].compact.map(&:to_s).join(".") end