diff --git a/README.rst b/README.rst index 37d944a0..55cddd02 100755 --- a/README.rst +++ b/README.rst @@ -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 `_, start by looking at the `first release `_ 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*. diff --git a/telethon/telegram_client.py b/telethon/telegram_client.py index a6dce1a9..b363cbc8 100644 --- a/telethon/telegram_client.py +++ b/telethon/telegram_client.py @@ -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