Skip to content

Commit 94d7702

Browse files
committedNov 9, 2022
Version 0.80.0
1 parent 3d0f4c3 commit 94d7702

File tree

3 files changed

+14
-14
lines changed

3 files changed

+14
-14
lines changed
 

‎CHANGELOG.md

+13-13
Original file line numberDiff line numberDiff line change
@@ -5,24 +5,22 @@ Exclamation symbols (:exclamation:) note something of importance e.g. breaking c
55

66
## [Unreleased]
77
### Notes
8-
- [:ledger: View file changes][Unreleased][:page_with_curl: DB migration script][unreleased-sql-migration]
9-
- This update adds support for [Bot API 6.3](https://core.telegram.org/bots/api#november-5-2022) (@TiiFuchs, #1371)
10-
### Added
11-
- Added the field `is_forum` to the class `Chat`.
12-
- Added the fields `is_topic_message` and `message_thread_id` to the class `Message` to allow detection of messages belonging to a forum topic and their message thread identifier.
13-
- Added the classes `ForumTopicCreated`, `ForumTopicClosed`, and `ForumTopicReopened` and the fields `forum_topic_created`, `forum_topic_closed`, and `forum_topic_reopened` to the class `Message`.
14-
- Added the field `can_manage_topics` to the classes `ChatAdministratorRights`, `ChatPermissions`, `ChatMemberAdministrator`, and `ChatMemberRestricted`.
15-
- Added the methods `createForumTopic`, `editForumTopic`, `closeForumTopic`, `reopenForumTopic`, `deleteForumTopic`, `unpinAllForumTopicMessages`, and `getForumTopicIconStickers` for forum topic management.
16-
- Added support for Multiple Usernames via the field `active_usernames` in the class `Chat`.
17-
- Added the field `emoji_status_custom_emoji_id` to the class `Chat`.
8+
- [:ledger: View file changes][Unreleased]
9+
### Added
1810
### Changed
19-
- ❗ Commands can now contain underscores. (@mlocati, #1365) This changes how File/Class names are converted to Commands and vice versa.
20-
A class with the name `FooBarCommand` in `FooBarCommand.php` was previously used for handling the `/foobar` command. This version changes this to `/foo_bar`. Be aware of this change if you have any classes with multiple uppercase letters.
2111
### Deprecated
2212
### Removed
2313
### Fixed
2414
### Security
2515

16+
## [0.80.0] - 2022-11-09
17+
### Notes
18+
- [:ledger: View file changes][0.80.0][:page_with_curl: DB migration script][0.80.0-sql-migration]
19+
### Added
20+
- Bot API 6.3 (@TiiFuchs) (#1371)
21+
### Changed
22+
- [:exclamation:][0.80.0-bc-commands-with-underscores] Commands can now contain underscores (`FooBarCommand` is handled by `/foo_bar`). (@mlocati) (#1365)
23+
2624
## [0.79.0] - 2022-09-04
2725
### Notes
2826
- [:ledger: View file changes][0.79.0]
@@ -613,7 +611,8 @@ Exclamation symbols (:exclamation:) note something of importance e.g. breaking c
613611
### Deprecated
614612
- Move `hideKeyboard` to `removeKeyboard`.
615613

616-
[unreleased-sql-migration]: https://github.com/php-telegram-bot/core/tree/master/utils/db-schema-update/new-release.sql
614+
[0.80.0-sql-migration]: https://github.com/php-telegram-bot/core/tree/master/utils/db-schema-update/0.79.0-0.80.0.sql
615+
[0.80.0-bc-commands-with-underscores]: https://github.com/php-telegram-bot/core/wiki/Breaking-backwards-compatibility#commands-with-underscores
617616
[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
618617
[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
619618
[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
@@ -653,6 +652,7 @@ Exclamation symbols (:exclamation:) note something of importance e.g. breaking c
653652
[Tidelift]: https://tidelift.com/subscription/pkg/packagist-longman-telegram-bot?utm_source=packagist-longman-telegram-bot&utm_medium=referral&utm_campaign=changelog
654653

655654
[Unreleased]: https://github.com/php-telegram-bot/core/compare/master...develop
655+
[0.80.0]: https://github.com/php-telegram-bot/core/compare/0.79.0...0.80.0
656656
[0.79.0]: https://github.com/php-telegram-bot/core/compare/0.78.0...0.79.0
657657
[0.78.0]: https://github.com/php-telegram-bot/core/compare/0.77.1...0.78.0
658658
[0.77.1]: https://github.com/php-telegram-bot/core/compare/0.77.0...0.77.1

‎src/Telegram.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ class Telegram
3737
*
3838
* @var string
3939
*/
40-
protected $version = '0.79.0';
40+
protected $version = '0.80.0';
4141

4242
/**
4343
* Telegram API key

0 commit comments

Comments
 (0)