Skip to content

Commit d9484af

Browse files
committed
Version 0.81.0
1 parent 8484c89 commit d9484af

File tree

3 files changed

+16
-7
lines changed

3 files changed

+16
-7
lines changed

CHANGELOG.md

Lines changed: 15 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,18 +5,26 @@ 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]
8+
- [:ledger: View file changes][Unreleased]
99
### Added
10-
- Added AllowDynamicProperties attribute to Entities to support newer PHP versions (@alesinicio) (#1388)
11-
- Bot API 6.4, 6.5, 6.6, 6.7 (@noplanman)
1210
### Changed
1311
### Deprecated
1412
### Removed
15-
- Keyboard validations (@noplanman)
1613
### Fixed
17-
- Fixed a bug where new incoming updates are not correctly passed to the Command object after the first time when getUpdates is used. (@uspilot) (#1384)
1814
### Security
1915

16+
## [0.81.0] - 2023-05-27
17+
### Notes
18+
- [:ledger: View file changes][0.81.0][:page_with_curl: DB migration script][0.81.0-sql-migration]
19+
- Last version that supports PHP 7.
20+
### Added
21+
- Support dynamic Entity properties for newer PHP versions (@alesinicio, @TiiFuchs) (#1390)
22+
- Bot API 6.4, 6.5, 6.6, 6.7 (@noplanman) (#1389)
23+
### Removed
24+
- Keyboard validations (@noplanman) (#1395)
25+
### Fixed
26+
- Fixed a bug where new incoming updates are not correctly passed to the Command object after the first time when getUpdates is used. (@uspilot) (#1384)
27+
2028
## [0.80.0] - 2022-11-09
2129
### Notes
2230
- [:ledger: View file changes][0.80.0][:page_with_curl: DB migration script][0.80.0-sql-migration]
@@ -615,7 +623,7 @@ Exclamation symbols (:exclamation:) note something of importance e.g. breaking c
615623
### Deprecated
616624
- Move `hideKeyboard` to `removeKeyboard`.
617625

618-
[unreleased-sql-migration]: https://github.com/php-telegram-bot/core/tree/master/utils/db-schema-update/0.80.0-unreleased.sql
626+
[0.81.0-sql-migration]: https://github.com/php-telegram-bot/core/tree/master/utils/db-schema-update/0.80.0-0.81.0.sql
619627
[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
620628
[0.80.0-bc-commands-with-underscores]: https://github.com/php-telegram-bot/core/wiki/Breaking-backwards-compatibility#commands-with-underscores
621629
[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
@@ -657,6 +665,7 @@ Exclamation symbols (:exclamation:) note something of importance e.g. breaking c
657665
[Tidelift]: https://tidelift.com/subscription/pkg/packagist-longman-telegram-bot?utm_source=packagist-longman-telegram-bot&utm_medium=referral&utm_campaign=changelog
658666

659667
[Unreleased]: https://github.com/php-telegram-bot/core/compare/master...develop
668+
[0.81.0]: https://github.com/php-telegram-bot/core/compare/0.80.0...0.81.0
660669
[0.80.0]: https://github.com/php-telegram-bot/core/compare/0.79.0...0.80.0
661670
[0.79.0]: https://github.com/php-telegram-bot/core/compare/0.78.0...0.79.0
662671
[0.78.0]: https://github.com/php-telegram-bot/core/compare/0.77.1...0.78.0

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.80.0';
40+
protected $version = '0.81.0';
4141

4242
/**
4343
* Telegram API key

0 commit comments

Comments
 (0)