From e28c7d9495c66572234a8f4772bde7ada47ae922 Mon Sep 17 00:00:00 2001 From: TOMITA Masahiro Date: Wed, 27 Mar 2024 01:15:38 +0900 Subject: [PATCH] 0.5.0 --- NEWS.md | 19 +++++++++++++++++++ lib/net/smtp.rb | 2 +- 2 files changed, 20 insertions(+), 1 deletion(-) diff --git a/NEWS.md b/NEWS.md index 63a324b..76d9672 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,5 +1,24 @@ # NEWS +## Version 0.5.0 (2024-03-27) + +### Improvements + +* Allow case-insensitive strings for SASL mechanism +* Make #auth_capable? public +* Add XOAUTH2 authenticator + +### Others + +* Remove unused private auth_method +* Delegate checking auth args to the authenticator +* Updated docs, especially TLS and SASL-related +* Renew test certificates +* Fix version extraction to work with non ASCII characters with any LANG +* Replace non-ASCII EM DASH (U+2014) with ASCII hyphen (U+002D) +* Use reusing workflow for Ruby versions +* Make the test suite compatible with --enable-frozen-string-literal + ## Version 0.4.0 (2023-09-20) ### Improvements diff --git a/lib/net/smtp.rb b/lib/net/smtp.rb index a9f5532..13e1f1f 100644 --- a/lib/net/smtp.rb +++ b/lib/net/smtp.rb @@ -192,7 +192,7 @@ class SMTPUnsupportedCommand < ProtocolError # compatibility, but are deprecated and should be avoided. # class SMTP < Protocol - VERSION = "0.4.0" + VERSION = "0.5.0" # The default SMTP port number, 25. def SMTP.default_port