From dac33872d92c3e0e66126c171aeef61559fe2c80 Mon Sep 17 00:00:00 2001 From: Lonami Exo Date: Sun, 18 Feb 2018 14:23:11 +0100 Subject: [PATCH] Update to v0.17.3 --- readthedocs/extra/changelog.rst | 29 +++++++++++++++++++++++++++++ telethon/version.py | 2 +- 2 files changed, 30 insertions(+), 1 deletion(-) diff --git a/readthedocs/extra/changelog.rst b/readthedocs/extra/changelog.rst index 34609615..0df32996 100644 --- a/readthedocs/extra/changelog.rst +++ b/readthedocs/extra/changelog.rst @@ -14,6 +14,35 @@ it can take advantage of new goodies! .. contents:: List of All Versions +New small convenience functions (v0.17.3) +========================================= + +*Published at 2018/02/18* + +More bug fixes and a few others addition to make events easier to use. + +Additions +~~~~~~~~~ + +- Use ``hachoir`` to extract video and audio metadata before upload. +- New ``.add_event_handle``, ``.add_update_handler`` now deprecated. + +Bug fixes +~~~~~~~~~ + +- ``bot_token`` wouldn't work on ``.start()``, and changes to ``password``. +- ``.edit_message()`` was ignoring the formatting (e.g. markdown). +- Added missing case to the ``NewMessage`` event for normal groups. +- Accessing the ``.text`` of the ``NewMessage`` event was failing due + to a bug with the markdown unparser. + +Internal changes +~~~~~~~~~~~~~~~~ + +- ``libssl`` is no longer an optional dependency. Use ``cryptg`` instead. + + + New small convenience functions (v0.17.2) ========================================= diff --git a/telethon/version.py b/telethon/version.py index 4ead720b..eaeb252f 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__ = '0.17.2' +__version__ = '0.17.3'