Skip to content

Bot API 5.6 #1275

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Feb 13, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ Exclamation symbols (:exclamation:) note something of importance e.g. breaking c
### Notes
- [:ledger: View file changes][Unreleased]
### Added
- Bot API 5.6 (@TiiFuchs) (#1275)
### Changed
### Deprecated
### Removed
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

A Telegram Bot based on the official [Telegram Bot API]

[![API Version](https://img.shields.io/badge/Bot%20API-5.5%20%28December%202021%29-32a2da.svg)](https://core.telegram.org/bots/api#december-7-2021)
[![API Version](https://img.shields.io/badge/Bot%20API-5.6%20%28December%202021%29-32a2da.svg)](https://core.telegram.org/bots/api#december-30-2021)
[![Join the bot support group on Telegram](https://img.shields.io/badge/telegram-@PHP__Telegram__Bot__Support-64659d.svg)](https://telegram.me/PHP_Telegram_Bot_Support)
[![Donate](https://img.shields.io/badge/%F0%9F%92%99-Donate%20%2F%20Support%20Us-blue.svg)](#donate)

Expand Down Expand Up @@ -78,7 +78,7 @@ This Bot aims to provide a platform where one can simply write a bot and have in

The Bot can:
- Retrieve updates with [webhook](#webhook-installation) and [getUpdates](#getupdates-installation) methods.
- Supports all types and methods according to Telegram Bot API 5.5 (December 2021).
- Supports all types and methods according to Telegram Bot API 5.6 (December 2021).
- Supports supergroups.
- Handle commands in chat with other bots.
- Manage Channel from the bot admin interface.
Expand Down Expand Up @@ -389,15 +389,15 @@ The reason for denying an update can be defined with the `$reason` parameter. Th

### Types

All types are implemented according to Telegram API 5.5 (December 2021).
All types are implemented according to Telegram API 5.6 (December 2021).

### Inline Query

Full support for inline query according to Telegram API 5.5 (December 2021).
Full support for inline query according to Telegram API 5.6 (December 2021).

### Methods

All methods are implemented according to Telegram API 5.5 (December 2021).
All methods are implemented according to Telegram API 5.6 (December 2021).

#### Send Message

Expand Down
Loading