1
0
Fork 0
mirror of https://github.com/deltachat/deltachat-core.git synced 2025-10-04 18:29:19 +02:00

prepare new deltachat python release

This commit is contained in:
holger krekel 2018-10-17 12:33:23 +02:00
parent 5ad5baa6ab
commit 30151a4a2e
2 changed files with 21 additions and 1 deletions

View file

@ -1,3 +1,23 @@
0.8.0
-----
- now depends on core tagged as v0.23.0
- drop send_image and other helper methods in favor of
just a Chat.send_file() that takes all kinds of media types
- introduce Message.get_mime_headers() which returns
the headers for an incoming message if the ``save_mime_headers``
config option is set.
- add Message.time_received attribute, now returning an unaware
datetime
- set_config() and get_config() now throw an error if a config option
does not exist
- some API renames
0.7.1 0.7.1
----- -----

View file

@ -2,7 +2,7 @@ from deltachat import capi, const
from deltachat.capi import ffi from deltachat.capi import ffi
from deltachat.account import Account # noqa from deltachat.account import Account # noqa
__version__ = "0.8.0.dev1" __version__ = "0.8.0"
_DC_CALLBACK_MAP = {} _DC_CALLBACK_MAP = {}