Skip to content

Commit 6d62ea1

Browse files
committed
Version 0.74.0
1 parent a826542 commit 6d62ea1

File tree

3 files changed

+13
-7
lines changed

3 files changed

+13
-7
lines changed

CHANGELOG.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,18 @@ Exclamation symbols (:exclamation:) note something of importance e.g. breaking c
77
### Notes
88
- [:ledger: View file changes][Unreleased][:page_with_curl: DB migration script][unreleased-sql-migration]
99
### Added
10-
- Bot API 5.3 (Personalized Commands, Keyboard Placeholders). (@TiiFuchs, @noplanman) (#1229, #1231)
1110
### Changed
1211
### Deprecated
1312
### Removed
1413
### Fixed
1514
### Security
1615

16+
## [0.74.0] - 2021-06-26
17+
### Notes
18+
- [:ledger: View file changes][0.74.0]
19+
### Added
20+
- Bot API 5.3 (Personalized Commands, Keyboard Placeholders). (@TiiFuchs, @noplanman) (#1229, #1231)
21+
1722
## [0.73.1] - 2021-06-20
1823
### Notes
1924
- [:ledger: View file changes][0.73.1]
@@ -567,6 +572,7 @@ Exclamation symbols (:exclamation:) note something of importance e.g. breaking c
567572
[Tidelift]: https://tidelift.com/subscription/pkg/packagist-longman-telegram-bot?utm_source=packagist-longman-telegram-bot&utm_medium=referral&utm_campaign=changelog
568573

569574
[Unreleased]: https://github.com/php-telegram-bot/core/compare/master...develop
575+
[0.74.0]: https://github.com/php-telegram-bot/core/compare/0.73.1...0.74.0
570576
[0.73.1]: https://github.com/php-telegram-bot/core/compare/0.73.0...0.73.1
571577
[0.73.0]: https://github.com/php-telegram-bot/core/compare/0.72.0...0.73.0
572578
[0.72.0]: https://github.com/php-telegram-bot/core/compare/0.71.0...0.72.0

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

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

10-
[![API Version](https://img.shields.io/badge/Bot%20API-5.2%20%28April%202021%29-32a2da.svg)](https://core.telegram.org/bots/api#april-26-2021)
10+
[![API Version](https://img.shields.io/badge/Bot%20API-5.3%20%28June%202021%29-32a2da.svg)](https://core.telegram.org/bots/api#june-25-2021)
1111
[![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)
1212
[![Donate](https://img.shields.io/badge/%F0%9F%92%99-Donate%20%2F%20Support%20Us-blue.svg)](#donate)
1313

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

7979
The Bot can:
8080
- Retrieve updates with [webhook](#webhook-installation) and [getUpdates](#getupdates-installation) methods.
81-
- Supports all types and methods according to Telegram Bot API 5.2 (April 2021).
81+
- Supports all types and methods according to Telegram Bot API 5.3 (June 2021).
8282
- Supports supergroups.
8383
- Handle commands in chat with other bots.
8484
- Manage Channel from the bot admin interface.
@@ -389,15 +389,15 @@ The reason for denying an update can be defined with the `$reason` parameter. Th
389389

390390
### Types
391391

392-
All types are implemented according to Telegram API 5.2 (April 2021).
392+
All types are implemented according to Telegram API 5.3 (June 2021).
393393

394394
### Inline Query
395395

396-
Full support for inline query according to Telegram API 5.2 (April 2021).
396+
Full support for inline query according to Telegram API 5.3 (June 2021).
397397

398398
### Methods
399399

400-
All methods are implemented according to Telegram API 5.2 (April 2021).
400+
All methods are implemented according to Telegram API 5.3 (June 2021).
401401

402402
#### Send Message
403403

src/Telegram.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ class Telegram
3737
*
3838
* @var string
3939
*/
40-
protected $version = '0.73.1';
40+
protected $version = '0.74.0';
4141

4242
/**
4343
* Telegram API key

0 commit comments

Comments
 (0)