Skip to content

Commit 50800f0

Browse files
Merge branch 'master' into inline_handler_update
2 parents 220772b + a18ec9d commit 50800f0

File tree

7 files changed

+1297
-140
lines changed

7 files changed

+1297
-140
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<p align="center">A simple, but extensible Python implementation for the <a href="https://core.telegram.org/bots/api">Telegram Bot API</a>.</p>
1111
<p align="center">Both synchronous and asynchronous.</p>
1212

13-
## <p align="center">Supported Bot API version: <a href="https://core.telegram.org/bots/api#july-3-2025"><img src="https://img.shields.io/badge/Bot%20API-9.1-blue?logo=telegram" alt="Supported Bot API version"></a>
13+
## <p align="center">Supported Bot API version: <a href="https://core.telegram.org/bots/api#august-15-2025"><img src="https://img.shields.io/badge/Bot%20API-9.2-blue?logo=telegram" alt="Supported Bot API version"></a>
1414

1515
<h2><a href='https://pytba.readthedocs.io/en/latest/index.html'>Official documentation</a></h2>
1616
<h2><a href='https://pytba.readthedocs.io/ru/latest/index.html'>Official ru documentation</a></h2>

telebot/__init__.py

Lines changed: 324 additions & 44 deletions
Large diffs are not rendered by default.

telebot/apihelper.py

Lines changed: 112 additions & 20 deletions
Large diffs are not rendered by default.

telebot/async_telebot.py

Lines changed: 344 additions & 48 deletions
Large diffs are not rendered by default.

telebot/asyncio_helper.py

Lines changed: 115 additions & 20 deletions
Large diffs are not rendered by default.

telebot/types.py

Lines changed: 398 additions & 6 deletions
Large diffs are not rendered by default.

telebot/util.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,9 @@
4141
'chat_background_set', 'forum_topic_created', 'forum_topic_closed', 'forum_topic_reopened', 'forum_topic_edited',
4242
'general_forum_topic_hidden', 'general_forum_topic_unhidden', 'write_access_allowed', 'users_shared', 'chat_shared',
4343
'giveaway_created', 'giveaway_winners', 'giveaway_completed', 'boost_added', 'paid_message_price_changed',
44-
'checklist_tasks_done', 'checklist_tasks_added', 'direct_message_price_changed',
44+
'checklist_tasks_done', 'checklist_tasks_added', 'direct_message_price_changed', 'suggested_post_refunded',
45+
'suggested_post_info', 'suggested_post_approved', 'suggested_post_approval_failed', 'suggested_post_declined',
46+
'suggested_post_paid'
4547
]
4648

4749
#: All update types, should be used for allowed_updates parameter in polling.

0 commit comments

Comments
 (0)