diff --git a/readthedocs/misc/changelog.rst b/readthedocs/misc/changelog.rst index f8c687ac..a75aa665 100644 --- a/readthedocs/misc/changelog.rst +++ b/readthedocs/misc/changelog.rst @@ -13,6 +13,36 @@ it can take advantage of new goodies! .. contents:: List of All Versions +Bug Fixes (v1.12) +================= + +*Published at 2020/04/20* + ++------------------------+ +| Scheme layer used: 111 | ++------------------------+ + +Once again nothing major, but a few bug fixes and primarily the new layer +deserves a new minor release. + +Bug fixes +~~~~~~~~~ + +These were already included in the ``v1.11.3`` patch: + +* ``libssl`` check was failing on macOS. +* Getting input users would sometimes fail on `events.ChatAction + `. + +These bug fixes are available in this release and beyond: + +* Avoid another occurrence of `MemoryError`. +* Sending large files in albums would fail because it tried to cache them. +* The ``thumb`` was being ignored when sending files from :tl:`InputFile`. +* Fixed editing inline messages from callback queries in some cases. +* Proxy connection is now blocking which should help avoid some errors. + + Bug Fixes (v1.11) ================= diff --git a/telethon/version.py b/telethon/version.py index b7016736..0f51216a 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.11.3' +__version__ = '1.12.0'