diff --git a/readthedocs/extra/changelog.rst b/readthedocs/extra/changelog.rst index d9e34b80..75fdaf72 100644 --- a/readthedocs/extra/changelog.rst +++ b/readthedocs/extra/changelog.rst @@ -14,6 +14,46 @@ it can take advantage of new goodies! .. contents:: List of All Versions +Bug Fixes (v1.5.3) +================== + +*Published at 2019/01/14* + +Several bug fixes and some quality of life enhancements. + +Additions +~~~~~~~~~ + +* You can now "hide_via" when clicking on results from `client.inline_query + ` to @bing and @gif. +* You can now further configure the logger Telethon uses to suit your needs. + +Breaking Changes +~~~~~~~~~~~~~~~~ + +* `message.edit ` now respects + the previous message buttons or link preview being hidden. If you want to + toggle them you need to explicitly set them. This is generally the desired + behaviour, but may cause some bots to have buttons when they shouldn't. + +Bug fixes +~~~~~~~~~ + +* Fixes for ReadTheDocs to correctly build the documentation. +* Fix :tl:`UserEmpty` not being expected when getting the input variant. +* The message object returned when sending a message with buttons wouldn't + always contain the :tl:`ReplyMarkup`. +* Setting email when configuring 2FA wasn't properly supported. +* ``utils.resolve_bot_file_id`` now works again for photos. + +Enhancements +~~~~~~~~~~~~ + +* Chat and channel participants can now be used as peers. +* Reworked README and examples at + https://github.com/LonamiWebs/Telethon/tree/master/telethon_examples + + Takeout Sessions (v1.5.2) ========================= diff --git a/telethon/version.py b/telethon/version.py index cc6dcac1..399588b6 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.5.2' +__version__ = '1.5.3'