Skip to content

Commit

Permalink
1.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Polgár Márton committed Feb 1, 2023
1 parent 0720566 commit 9cfea91
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
3 changes: 3 additions & 0 deletions Changes
Expand Up @@ -2,5 +2,8 @@ Revision history for Net::SMTP

{{$NEXT}}

1.2.2 2023-02-01T15:43:14+01:00
- follow the Digest->Digest::MD5 module change

1.2.1 2022-02-21T18:00:49+01:00
- First version in zef ecosystem
4 changes: 2 additions & 2 deletions META6.json
Expand Up @@ -7,7 +7,7 @@
"Email::Simple",
"MIME::Base64",
"Digest::HMAC",
"Digest",
"Digest::MD5",
"IO::Socket::SSL"
],
"description": "Simple SMTP Client",
Expand All @@ -29,5 +29,5 @@
],
"test-depends": [
],
"version": "1.2.1"
"version": "1.2.2"
}
2 changes: 1 addition & 1 deletion lib/Net/SMTP.rakumod
@@ -1,4 +1,4 @@
unit class Net::SMTP:ver<1.2.1>:auth<zef:raku-community-modules>;
unit class Net::SMTP:ver<1.2.2>:auth<zef:raku-community-modules>;

has $.server;
has $.port;
Expand Down
2 changes: 1 addition & 1 deletion lib/Net/SMTP/Raw.rakumod
@@ -1,7 +1,7 @@
unit role Net::SMTP::Raw;

use MIME::Base64;
use Digest;
use Digest::MD5;
use Digest::HMAC;
use IO::Socket::SSL;

Expand Down

0 comments on commit 9cfea91

Please sign in to comment.