Skip to content

Commit

Permalink
bump aiosmtplib (#280)
Browse files Browse the repository at this point in the history
* bump aiosmtplib
  • Loading branch information
theruziev authored Dec 16, 2023
1 parent b60054c commit 8d4dc66
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ aiosmtplib = "*"
httpx = "*"
sphinx = "*"
typing-extensions = "*"
attr = "*"

[packages]
httpx = "*"
Expand Down
2 changes: 1 addition & 1 deletion async_sender/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "2.0.1" # pragma: no cover
__version__ = "3.0.0" # pragma: no cover
4 changes: 2 additions & 2 deletions async_sender/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -333,6 +333,6 @@ async def send(self, message: "Message"):
message.from_address,
message.to_address,
message.as_bytes(),
message.mail_options,
message.rcpt_options,
mail_options=message.mail_options,
rcpt_options=message.rcpt_options,
)
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@


REQUIRED = [
'aiosmtplib==2.0.2'
'aiosmtplib==3.0.1'
]

setup(
Expand Down

0 comments on commit 8d4dc66

Please sign in to comment.