Skip to content

Releases: cubicbyte/tempmail-python

2.3.3 - Python 3.7+ support

Choose a tag to compare

@cubicbyte cubicbyte released this 08 Jan 14:06
ebb9e68

What's Changed

Full Changelog: 2.3.2...2.3.3

2.3.2

Choose a tag to compare

@cubicbyte cubicbyte released this 23 Nov 09:45
a2da524

What's Changed

Full Changelog: 2.3.1...2.3.2

2.3.1

Choose a tag to compare

@cubicbyte cubicbyte released this 28 Oct 09:32
2e75950

What's Changed

  • Add custom inbox update interval support by @cubicbyte in #2

New Contributors

Full Changelog: 2.3.0...2.3.1

2.3.0

Choose a tag to compare

@cubicbyte cubicbyte released this 22 Aug 18:49
1162d4e

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

Choose a tag to compare

@cubicbyte cubicbyte released this 09 Aug 05:41

Added EMail.address property and EMail.repr method.

2.2.0 - Fixes

Choose a tag to compare

@cubicbyte cubicbyte released this 07 Aug 15:57
  • Fixed name of Message.test_body (now text_body)
  • Fixed Message.body had incorrect value

Full Changelog: 2.1.0...2.2.0

2.1.0 - Upgraded date view

Choose a tag to compare

@cubicbyte cubicbyte released this 07 Aug 10:01

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

Choose a tag to compare

@cubicbyte cubicbyte released this 06 Aug 10:02

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!

Choose a tag to compare

@cubicbyte cubicbyte released this 05 Aug 20:32
Renamed project to tempmail-python