Added changelog

This commit is contained in:
JRoot Junior 2024-04-22 23:40:32 +03:00
parent b2b2fcff70
commit 5684bc3667
No known key found for this signature in database
GPG key ID: 738964250D5FF6E2

13
CHANGES/1468.feature.rst Normal file
View file

@ -0,0 +1,13 @@
Added context manager interface to Bot instance, from now you can use:
.. code-block:: python
async with Bot(...) as bot:
...
instead of
.. code-block:: python
async with Bot(...).context():
...