Skip to content

Commit

Permalink
Merge pull request #82 from ruby/v0-5-0
Browse files Browse the repository at this point in the history
version 0.5.0
  • Loading branch information
tmtm committed Mar 26, 2024
2 parents 193f427 + e28c7d9 commit 5b60464
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 1 deletion.
19 changes: 19 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,24 @@
# NEWS

## Version 0.5.0 (2024-03-27)

### Improvements

* Allow case-insensitive strings for SASL mechanism <https://github.com/ruby/net-smtp/pull/64>
* Make #auth_capable? public <https://github.com/ruby/net-smtp/pull/63>
* Add XOAUTH2 authenticator <https://github.com/ruby/net-smtp/pull/80>

### Others

* Remove unused private auth_method <https://github.com/ruby/net-smtp/pull/67>
* Delegate checking auth args to the authenticator <https://github.com/ruby/net-smtp/pull/73>
* Updated docs, especially TLS and SASL-related <https://github.com/ruby/net-smtp/pull/66>
* Renew test certificates <https://github.com/ruby/net-smtp/pull/75>
* Fix version extraction to work with non ASCII characters with any LANG <https://github.com/ruby/net-smtp/pull/76>
* Replace non-ASCII EM DASH (U+2014) with ASCII hyphen (U+002D) <https://github.com/ruby/net-smtp/pull/78>
* Use reusing workflow for Ruby versions <https://github.com/ruby/net-smtp/pull/79>
* Make the test suite compatible with --enable-frozen-string-literal <https://github.com/ruby/net-smtp/pull/81>

## Version 0.4.0 (2023-09-20)

### Improvements
Expand Down
2 changes: 1 addition & 1 deletion lib/net/smtp.rb
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 5b60464

Please sign in to comment.