Update to v0.8

This commit is contained in:
Lonami Exo 2017-04-14 15:33:05 +02:00
parent 6b2c0271ae
commit fbc7aabf13
2 changed files with 2 additions and 2 deletions

View File

@ -167,7 +167,7 @@ know what arguments it has. It really isn't that hard to write a generator for g
The generated code should also be able to *encode* the ``Request`` into bytes, so they can be sent over
the network. This isn't a big deal either, because you know how the ``TLObject``'s are made.
Once you have your own [code generator](telethon_generator/tl_generator.py), start by looking at the
Once you have your own `code generator <telethon_generator/tl_generator.py>`_, start by looking at the
`first release <https://github.com/LonamiWebs/Telethon/releases/tag/v0.1>`_ of Telethon.
The code there is simple to understand, easy to read and hence easy to port. No extra useless features.
Only the bare bones. Perfect for starting a *new implementation*.

View File

@ -41,7 +41,7 @@ from telethon.utils import (find_user_or_chat, get_input_peer,
class TelegramClient:
# Current TelegramClient version
__version__ = '0.7.1'
__version__ = '0.8'
# region Initialization