Releases: cubicbyte/tempmail-python
Releases · cubicbyte/tempmail-python
2.3.3 - Python 3.7+ support
2.3.2
2.3.1
What's Changed
- Add custom inbox update interval support by @cubicbyte in #2
New Contributors
- @cubicbyte made their first contribution in #2
Full Changelog: 2.3.0...2.3.1
2.3.0
In this update a lot of documentation has been added, the OneSecMail constructor field has been changed: OneSecMail(email=...)
-> OneSecMail(address=...)
and some other changes.
Full Changelog: 2.2.1...2.3.0
2.2.1 - New methods
Added EMail.address property and EMail.repr method.
2.2.0 - Fixes
- Fixed name of
Message.test_body
(nowtext_body
) - Fixed
Message.body
had incorrect value
Full Changelog: 2.1.0...2.2.0
2.1.0 - Upgraded date view
Previous:
msg = email.wait_for_message()
print(type(msg.date)) # <class 'str'>
Now:
msg = email.wait_for_message()
print(type(msg.date)) # <class 'datetime.datetime'>
print(type(msg.date_str)) # <class 'str'>
Full Changelog: 2.0.0...2.0.1
2.0.0 - API reworked
In this update, the package's API was revised and made simpler
by moving from functional programming principles to object based.
All documentation and examples are available in the README.md file
Full Changelog: 1.0.0...2.0.0
1.0.0 - First release!
Renamed project to tempmail-python