Skip to content

Commit f3fe5ed

Browse files
committed
Version 0.78.0
1 parent 35cfcbe commit f3fe5ed

File tree

4 files changed

+16
-9
lines changed

4 files changed

+16
-9
lines changed

CHANGELOG.md

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,16 +6,21 @@ Exclamation symbols (:exclamation:) note something of importance e.g. breaking c
66
## [Unreleased]
77
### Notes
88
- [:ledger: View file changes][Unreleased]
9-
- 64 bit PHP installs are required to handle files larger than 2GB!
109
### Added
11-
- Bot API 6.1 (@jyxjjj, @OxMohsen, @noplanman) (#1333, #1338, #1339)
12-
- New Update field helpers for Command class.
1310
### Changed
1411
### Deprecated
1512
### Removed
1613
### Fixed
1714
### Security
1815

16+
## [0.78.0] - 2022-07-03
17+
### Notes
18+
- [:ledger: View file changes][0.78.0][:page_with_curl: DB migration script][0.78.0-sql-migration]
19+
- 64 bit PHP install required to handle files larger than 2GB!
20+
### Added
21+
- Bot API 6.1 (@jyxjjj, @OxMohsen, @noplanman) (#1333, #1338, #1339)
22+
- New Update field helpers for Command class.
23+
1924
## [0.77.1] - 2022-04-24
2025
### Notes
2126
- [:ledger: View file changes][0.77.1]
@@ -587,6 +592,7 @@ Exclamation symbols (:exclamation:) note something of importance e.g. breaking c
587592
### Deprecated
588593
- Move `hideKeyboard` to `removeKeyboard`.
589594

595+
[0.78.0-sql-migration]: https://github.com/php-telegram-bot/core/tree/master/utils/db-schema-update/0.77.1-0.78.0.sql
590596
[0.77.0-sql-migration]: https://github.com/php-telegram-bot/core/tree/master/utils/db-schema-update/0.76.1-0.77.0.sql
591597
[0.75.0-sql-migration]: https://github.com/php-telegram-bot/core/tree/master/utils/db-schema-update/0.74.0-0.75.0.sql
592598
[0.75.0-bc-removed-chatactions]: https://github.com/php-telegram-bot/core/wiki/Breaking-backwards-compatibility#removed-deprecated-chatactions
@@ -625,6 +631,7 @@ Exclamation symbols (:exclamation:) note something of importance e.g. breaking c
625631
[Tidelift]: https://tidelift.com/subscription/pkg/packagist-longman-telegram-bot?utm_source=packagist-longman-telegram-bot&utm_medium=referral&utm_campaign=changelog
626632

627633
[Unreleased]: https://github.com/php-telegram-bot/core/compare/master...develop
634+
[0.78.0]: https://github.com/php-telegram-bot/core/compare/0.77.1...0.78.0
628635
[0.77.1]: https://github.com/php-telegram-bot/core/compare/0.77.0...0.77.1
629636
[0.77.0]: https://github.com/php-telegram-bot/core/compare/0.76.1...0.77.0
630637
[0.76.1]: https://github.com/php-telegram-bot/core/compare/0.76.0...0.76.1

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-6.0%20%28April%202022%29-32a2da.svg)](https://core.telegram.org/bots/api#april-16-2022)
10+
[![API Version](https://img.shields.io/badge/Bot%20API-6.1%20%28June%202022%29-32a2da.svg)](https://core.telegram.org/bots/api#june-20-2022)
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 6.0 (April 2022).
81+
- Supports all types and methods according to Telegram Bot API 6.1 (June 2022).
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 6.0 (April 2022).
392+
All types are implemented according to Telegram API 6.1 (June 2022).
393393

394394
### Inline Query
395395

396-
Full support for inline query according to Telegram API 6.0 (April 2022).
396+
Full support for inline query according to Telegram API 6.1 (June 2022).
397397

398398
### Methods
399399

400-
All methods are implemented according to Telegram API 6.0 (April 2022).
400+
All methods are implemented according to Telegram API 6.1 (June 2022).
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.77.1';
40+
protected $version = '0.78.0';
4141

4242
/**
4343
* Telegram API key

0 commit comments

Comments
 (0)