diff --git a/readthedocs/misc/changelog.rst b/readthedocs/misc/changelog.rst index 2eab348c..384d3207 100644 --- a/readthedocs/misc/changelog.rst +++ b/readthedocs/misc/changelog.rst @@ -13,6 +13,27 @@ it can take advantage of new goodies! .. contents:: List of All Versions +New layer (v1.32) +================= + ++------------------------+ +| Scheme layer used: 166 | ++------------------------+ + +`View new and changed raw API methods `__. + +This enables you to use custom languages in preformatted blocks using HTML: + +.. code-block:: html + +
+    from telethon import TelegramClient
+  
+ +Note that Telethon v1's markdown is a custom format and won't support language tags. +If you want to set a custom language, you have to use HTML or a custom formatter. + + Dropped imghdr support (v1.31) ============================== diff --git a/telethon/version.py b/telethon/version.py index c6e38c29..2c8d2aba 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.31.1' +__version__ = '1.32.0'