diff --git a/readthedocs/extra/changelog.rst b/readthedocs/extra/changelog.rst index 037dc95c..216b086c 100644 --- a/readthedocs/extra/changelog.rst +++ b/readthedocs/extra/changelog.rst @@ -14,6 +14,41 @@ it can take advantage of new goodies! .. contents:: List of All Versions +Error Descriptions in CSV files (v1.4.3) +======================================== + +*Published at 2018/12/04* + +While this may seem like a minor thing, it's a big usability improvement. + +Anyone who wants to update the documentation for known errors, or whether +some methods can be used as a bot, user or both, can now be easily edited. +Everyone is encouraged to help document this better! + +Bug fixes +~~~~~~~~~ + +* ``TimeoutError`` was not handled during automatic reconnects. +* Getting messages by ID using :tl:`InputMessageReplyTo` could fail. +* Fixed `message.get_reply_message + ` + as a bot when a user replied to a different bot. +* Accessing some document properties in a `Message + ` would fail. + +Enhancements +~~~~~~~~~~~~ + +* Accessing `events.ChatAction ` + properties such as input users may now work in more cases. + +Internal changes +~~~~~~~~~~~~~~~~ + +* Error descriptions and information about methods is now loaded + from a CSV file instead of being part of several messy JSON files. + + Bug Fixes (v1.4.2) ================== diff --git a/telethon/version.py b/telethon/version.py index 3274285e..91bf06fb 100644 --- a/telethon/version.py +++ b/telethon/version.py @@ -1,3 +1,3 @@ # Versions should comply with PEP440. # This line is parsed in setup.py: -__version__ = '1.4.2' +__version__ = '1.4.3'