From aff2130d7483f60b93beea93a480b1c2e541ef91 Mon Sep 17 00:00:00 2001 From: Mikel Lindsaar Date: Fri, 22 Apr 2022 10:48:28 +1000 Subject: [PATCH] Now tracking 2.9.0.edge. See 2-8-stable for 2.8.x releases. --- CHANGELOG.rdoc | 20 ++------------------ lib/mail/version.rb | 2 +- 2 files changed, 3 insertions(+), 19 deletions(-) diff --git a/CHANGELOG.rdoc b/CHANGELOG.rdoc index 0d9a3c15..177db9f4 100644 --- a/CHANGELOG.rdoc +++ b/CHANGELOG.rdoc @@ -1,25 +1,9 @@ -== Version 2.8.0 (unreleased) +== Version 2.9.0 (unreleased) Breaking changes: -* Add Ruby 3.1 support (deivid-rodriguez, voxik, eregon) -* Drop support for Ruby < 2.5 (deivid-rodriguez, voxik) -* Message#without_attachments! now deletes nested attachments. (TylerRick) -* Sendmail and exim delivery now raise DeliveryError when the command exits with a nonzero exitstatus. (benmmurphy, CoolElvis) -* Sendmail and exim delivery :arguments option must be an array of string args. (benmmurphy) -* Passing unparsed headers to Mail::Field.new is no longer supported. Use Mail::Field.parse. (jeremy) -* Removed long-deprecated features: Message#register_for_delivery_notification, #has_transfer_encoding?, #add_transfer_encoding, #transfer_encoding, #message_content_type, #mime_parameters, #encode!, and Part#inline_content_id. (jeremy) Compatibility: -* Handle a wide variety of non-RFC Message-ID formats. (peterkovacs) -* Normalize Quoted-Printable line endings for text content. (jeremy) -* Gracefully parse invalid dates in Date and Received headers. (okkez) -* Converting to multipart moves Content-* headers to the new part. (kirikak2) -* Multipart Content-Type no longer includes a needless charset param. (kirikak2) -* Replies prefix subject with "Re: " instead of "RE: " per 5322 3.6.5. (mashedcode) -* Gracefully handle multiple, possibly-invalid headers for what should be singular fields. (rosa) Features: -* Message#inspect_structure and PartsList#inspect_structure pretty-print the hierarchy of message parts. (TylerRick) -* `an_attachment_with_mime_type` matcher added to match attachments by mime type -Please check [2-7-stable](https://github.com/mikel/mail/blob/2-7-stable/CHANGELOG.rdoc) for previous changes. +Please check [2-8-stable](https://github.com/mikel/mail/blob/2-8-stable/CHANGELOG.rdoc) for previous changes. diff --git a/lib/mail/version.rb b/lib/mail/version.rb index 11ecfbed..c9e257cd 100644 --- a/lib/mail/version.rb +++ b/lib/mail/version.rb @@ -3,7 +3,7 @@ module Mail module VERSION MAJOR = 2 - MINOR = 8 + MINOR = 9 PATCH = 0 BUILD = 'edge'