From bda4259815406c36e331f2cb4889d3d2f70881e8 Mon Sep 17 00:00:00 2001 From: Lonami Exo Date: Wed, 1 Dec 2021 19:08:47 +0100 Subject: [PATCH] Bump to v1.24 --- readthedocs/misc/changelog.rst | 24 ++++++++++++++++++++++++ telethon/version.py | 2 +- 2 files changed, 25 insertions(+), 1 deletion(-) diff --git a/readthedocs/misc/changelog.rst b/readthedocs/misc/changelog.rst index 951cf2e0..112aa117 100644 --- a/readthedocs/misc/changelog.rst +++ b/readthedocs/misc/changelog.rst @@ -13,6 +13,30 @@ it can take advantage of new goodies! .. contents:: List of All Versions +Rushed release to fix login (v1.24) +=================================== + ++------------------------+ +| Scheme layer used: 133 | ++------------------------+ + +This is a rushed release. It contains a layer recent enough to not fail with +``UPDATE_APP_TO_LOGIN``, but still not the latest, to avoid breaking more +than necessary. + +Breaking Changes +~~~~~~~~~~~~~~~~ + +* The biggest change is user identifiers (and chat identifiers, and others) + **now use up to 64 bits**, rather than 32. If you were storing them in some + storage with fixed size, you may need to update (such as database tables + storing only integers). + +There have been other changes which I currently don't have the time to document. +You can refer to the following link to see them early: +https://github.com/LonamiWebs/Telethon/compare/v1.23.0...v1.24.0 + + New schema and bug fixes (v1.23) ================================ diff --git a/telethon/version.py b/telethon/version.py index ab80aa1b..68e59657 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.23.0' +__version__ = '1.24.0'