commit 4ab9f262fad6ee2660ce4b5b638827076ed673c4
parent 69be57859d18b7f0be78c0e6627b6f47541261b6
Author: Dan Callaghan <djc@djc.id.au>
Date: Mon, 23 May 2022 20:49:53 +1000
release 1.1
Diffstat:
3 files changed, 24 insertions(+), 3 deletions(-)
diff --git a/CONTRIBUTORS b/CONTRIBUTORS
@@ -2,22 +2,22 @@ William Morgan <william at the twitter dot coms>
Rich Lane <rlane at the club.cc.cmu dot edus>
Gaute Hope <eg at the gaute.vetsj dot coms>
Whyme Lyu <callme5long at the gmail dot coms>
+Dan Callaghan <djc at the djc.id dot aus>
Hamish Downer <dmishd at the gmail dot coms>
Zeger-Jan van de Weg <mail at the zjvandeweg dot nls>
Damien Leone <damien.leone at the fensalir dot frs>
Sascha Silbe <sascha-pgp at the silbe dot orgs>
+Iain Parris <ipv2.vcs at the parris dot orgs>
Eric Weikl <eric.weikl at the gmx dot nets>
Paweł Wilk <siefca at the gnu dot orgs>
Matthieu Rakotojaona <matthieu.rakotojaona at the gmail dot coms>
Ismo Puustinen <ismo at the iki dot fis>
-Dan Callaghan <djc at the djc.id dot aus>
Nicolas Pouillard <nicolas.pouillard at the gmail dot coms>
Michael Stapelberg <michael at the stapelberg dot des>
Eric Sherman <hyperbolist at the gmail dot coms>
Tero Tilus <tero at the tilus dot nets>
Ben Walton <bwalton at the artsci.utoronto dot cas>
Scott Bonds <scott at the ggr dot coms>
-Iain Parris <ipv2.vcs at the parris dot orgs>
Mike Stipicevic <stipim at the rpi dot edus>
Martin Bähr <mbaehr at the societyserver dot orgs>
Timon Vonk <timonv at the gmail dot coms>
@@ -87,6 +87,7 @@ Todd Eisenberger <teisenbe at the andrew.cmu dot edus>
Johannes Larsen <mail at the johslarsen dot nets>
Steven Schmeiser <steven at the schmeiser dot orgs>
Steven Walter <swalter at the monarch.(none)>
+Utkarsh Gupta <utkarsh at the debian dot orgs>
Michael Dwyer <mdwyer at the michaelmdwyer dot coms>
Kyle Hunt <Kyle_Hunt at the ymail dot coms>
William A. Kennington III <william at the wkennington dot coms>
diff --git a/History.txt b/History.txt
@@ -1,3 +1,23 @@
+== 1.1 / 2022-05-23
+
+* #588, #577: Sup is now compatible with and tested on Ruby 3.0 and Ruby 3.1.
+* When the Sup gem installs xapian-ruby, it will install to the user gem
+ directory if the system gem directory is not writable. (Iain Parris)
+* #571: To and From addresses of enclosed messages are now displayed normally,
+ instead of as Redwood::Person objects. (Iain Parris)
+* #570: Fixed wording when displaying enclosed messages without Date header.
+ (Iain Parris)
+* #205, #602: UTF-8 header values are now accepted and handled correctly, as
+ per RFC6532.
+* #585: Text/plain attachments with invalid charset are now displayed as
+ US-ASCII (with high bytes replaced) instead of crashing.
+* #424: Spaces are now accepted in RFC2047-encoded header words, even though
+ the RFC forbids them. (Dan Callaghan)
+* Invalid RFC2047-encoded header words are now displayed in their raw form,
+ rather than trying to forcibly transcode them to UTF-8, as per the RFC's
+ recommendation. (Dan Callaghan)
+* Sup now decodes UTF-7 correctly instead of crashing.
+
== 1.0 / 2020-07-12
No changes. The version number is incremented to 1.0 to reflect the fact that
diff --git a/lib/sup/version.rb b/lib/sup/version.rb
@@ -8,5 +8,5 @@ def git_suffix
end
module Redwood
- VERSION = "1.1#{git_suffix}"
+ VERSION = "1.1"
end