diff --git a/CONTRIBUTORS b/CONTRIBUTORS index 9c5723aa..ecb5b58a 100644 --- a/CONTRIBUTORS +++ b/CONTRIBUTORS @@ -1,8 +1,8 @@ William Morgan Rich Lane Gaute Hope -Whyme Lyu Dan Callaghan +Whyme Lyu Hamish Downer Zeger-Jan van de Weg Damien Leone @@ -87,6 +87,8 @@ Todd Eisenberger Johannes Larsen Steven Schmeiser Steven Walter +Patrice Duroux +gclv Utkarsh Gupta Michael Dwyer Kyle Hunt diff --git a/History.txt b/History.txt index 9b321961..90018872 100644 --- a/History.txt +++ b/History.txt @@ -1,3 +1,15 @@ +== 1.2 / 2024-04-21 + +* #619: Sup is now compatible with and tested on Ruby 3.2 and Ruby 3.3. + (Dan Callaghan) +* #603: Fixed deprecated usage of Enumerator.new, which caused a crash on + Ruby 3+. (Gui Goncalves) +* OutOfSyncSourceErrors now show an error message in the thread view in place + of the out-of-sync message body, instead of crashing. (Dan Callaghan) +* #613: When installing Sup as a gem, the dependency on xapian-ruby is now + skipped if the SUP_SKIP_XAPIAN_GEM_INSTALL environment variable is set. + Previously it was skipped unconditionally on OpenBSD only. (Dan Callaghan) + == 1.1 / 2022-05-23 * #588, #577: Sup is now compatible with and tested on Ruby 3.0 and Ruby 3.1. diff --git a/lib/sup/version.rb b/lib/sup/version.rb index e2b6d114..1e72bb33 100644 --- 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.2" end