Add change log

This commit is contained in:
dsodx 2023-06-21 14:52:30 +03:00
parent d8ba0ee48e
commit ead8b2c61a

12
CHANGES/1194.feature.rst Normal file
View file

@ -0,0 +1,12 @@
Added Currency enum.
You can use it like this:
.. code-block:: python
from aiogram import Bot
from aiogram.enum import Currency
await Bot.send_invoice(
...,
currency=Currency.USD,
...
)