diff --git a/CHANGELOG.md b/CHANGELOG.md index 09c186e7..94443cdd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,14 @@ 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/). +## 14.3.0 - 2023-11-03 + +### Added + +* Each release is accompanied by the creation of a container + image (usable with Docker or Podman) the can be used to + run backups without any other installation necessary. + ## 14.2.0 - 2023-10-21 ### Changed diff --git a/lib/imap/backup/version.rb b/lib/imap/backup/version.rb index ba9101ea..873b8ecf 100644 --- a/lib/imap/backup/version.rb +++ b/lib/imap/backup/version.rb @@ -2,7 +2,7 @@ module Imap; end module Imap::Backup MAJOR = 14 - MINOR = 2 + MINOR = 3 REVISION = 0 PRE = nil VERSION = [MAJOR, MINOR, REVISION, PRE].compact.map(&:to_s).join(".")