Skip to content

Commit 0eea94e

Browse files
committed
Version 0.77.0
1 parent 1c6c9aa commit 0eea94e

File tree

4 files changed

+17
-8
lines changed

4 files changed

+17
-8
lines changed

CHANGELOG.md

Lines changed: 13 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,22 @@ Exclamation symbols (:exclamation:) note something of importance e.g. breaking c
77
### Notes
88
- [:ledger: View file changes][Unreleased]
99
### Added
10-
- Bot API 6.0 See https://core.telegram.org/bots/api#april-16-2022 (@TiiFuchs)
1110
### Changed
1211
### Deprecated
13-
- Telegram changed voice_chat_scheduled, voice_chat_started, voice_chat_ended and voice_chat_participants_invited to video_chat_scheduled, video_chat_started, video_chat_ended and video_chat_participants_invited.
14-
To reflect that change we marked the corresponding VoiceChat classes as deprecated and created new classes for the VideoChat events.
1512
### Removed
1613
### Fixed
1714
### Security
1815

16+
## [0.77.0] - 2022-04-24
17+
### Notes
18+
- [:ledger: View file changes][0.77.0][:page_with_curl: DB migration script][0.77.0-sql-migration]
19+
### Added
20+
- Bot API 6.0 (@TiiFuchs) (#1318)
21+
### Deprecated
22+
- Telegram changed `voice_chat_X` to `video_chat_X`. `VoiceChatX` event classes are deprecated, use new `VideoChatX` event classes instead.
23+
### Fixed
24+
- Return correct data in `Entity::jsonSerialize` (@TiiFuchs)
25+
1926
## [0.76.1] - 2022-03-30
2027
### Notes
2128
- [:ledger: View file changes][0.76.1]
@@ -571,7 +578,8 @@ To reflect that change we marked the corresponding VoiceChat classes as deprecat
571578
### Deprecated
572579
- Move `hideKeyboard` to `removeKeyboard`.
573580

574-
[0.75.0-sql-migration]: https://github.com/php-telegram-bot/core/tree/develop/utils/db-schema-update/0.74.0-0.75.0.sql
581+
[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
582+
[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
575583
[0.75.0-bc-removed-chatactions]: https://github.com/php-telegram-bot/core/wiki/Breaking-backwards-compatibility#removed-deprecated-chatactions
576584
[0.74.0-bc-chatmember-subentities]: https://github.com/php-telegram-bot/core/wiki/Breaking-backwards-compatibility#chatmember-subentities
577585
[0.73.0-sql-migration]: https://github.com/php-telegram-bot/core/tree/master/utils/db-schema-update/0.72.0-0.73.0.sql
@@ -608,6 +616,7 @@ To reflect that change we marked the corresponding VoiceChat classes as deprecat
608616
[Tidelift]: https://tidelift.com/subscription/pkg/packagist-longman-telegram-bot?utm_source=packagist-longman-telegram-bot&utm_medium=referral&utm_campaign=changelog
609617

610618
[Unreleased]: https://github.com/php-telegram-bot/core/compare/master...develop
619+
[0.77.0]: https://github.com/php-telegram-bot/core/compare/0.76.1...0.77.0
611620
[0.76.1]: https://github.com/php-telegram-bot/core/compare/0.76.0...0.76.1
612621
[0.76.0]: https://github.com/php-telegram-bot/core/compare/0.75.0...0.76.0
613622
[0.75.0]: https://github.com/php-telegram-bot/core/compare/0.74.0...0.75.0

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -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.7 (January 2022).
392+
All types are implemented according to Telegram API 6.0 (April 2022).
393393

394394
### Inline Query
395395

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

398398
### Methods
399399

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

4242
/**
4343
* Telegram API key

0 commit comments

Comments
 (0)