diff --git a/readthedocs/misc/changelog.rst b/readthedocs/misc/changelog.rst index a75aa665..eb1df48d 100644 --- a/readthedocs/misc/changelog.rst +++ b/readthedocs/misc/changelog.rst @@ -13,6 +13,68 @@ it can take advantage of new goodies! .. contents:: List of All Versions +Minor quality of life improvements (v1.14) +========================================== + +*Published at 2020/05/26* + ++------------------------+ +| Scheme layer used: 113 | ++------------------------+ + +Some nice things that were missing, along with the usual bug-fixes. + +Additions +~~~~~~~~~ + +* New `Message.dice ` property. +* The ``func=`` parameter of events can now be an ``async`` function. + +Bug fixes +~~~~~~~~~ + +* Fixed `client.action() ` + having an alias wrong. +* Fixed incorrect formatting of some errors. +* Probably more reliable detection of pin events in small groups. +* Fixed send methods on `client.conversation() + ` were not honoring + cancellation. +* Flood waits of zero seconds are handled better. +* Getting the pinned message in a chat was failing. +* Fixed the return value when forwarding messages if some were missing + and also the return value of albums. + +Enhancements +~~~~~~~~~~~~ + +* ``.tgs`` files are now recognised as animated stickers. +* The service message produced by `Message.pin() + ` is now returned. +* Sending a file with `client.send_file() + ` now works fine when + you pass an existing dice media (e.g. sending a message copy). +* `client.edit_permissions() ` + now has the ``embed_links`` parameter which was missing. + +Bug Fixes (v1.13) +================= + +*Published at 2020/04/25* + ++------------------------+ +| Scheme layer used: 112 | ++------------------------+ + +Bug fixes and layer bump. + +Bug fixes +~~~~~~~~~ + +* Passing ``None`` as the entity to `client.delete_messages() + ` would fail. +* When downloading a thumbnail, the name inferred was wrong. + Bug Fixes (v1.12) ================= diff --git a/telethon/version.py b/telethon/version.py index 8846b60c..12445eee 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.13.0' +__version__ = '1.14.0'