From d9484af72a39e10913a60d2c6c9ceffb61d624d1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Armando=20L=C3=BCscher?= Date: Sat, 27 May 2023 17:34:56 +0200 Subject: [PATCH] Version 0.81.0 --- CHANGELOG.md | 21 +++++++++++++------ src/Telegram.php | 2 +- ....80.0-unreleased.sql => 0.80.0-0.81.0.sql} | 0 3 files changed, 16 insertions(+), 7 deletions(-) rename utils/db-schema-update/{0.80.0-unreleased.sql => 0.80.0-0.81.0.sql} (100%) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0300da6f..7f8b547b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,18 +5,26 @@ Exclamation symbols (:exclamation:) note something of importance e.g. breaking c ## [Unreleased] ### Notes -- [:ledger: View file changes][Unreleased] ∙ [:page_with_curl: DB migration script][unreleased-sql-migration] +- [:ledger: View file changes][Unreleased] ### Added -- Added AllowDynamicProperties attribute to Entities to support newer PHP versions (@alesinicio) (#1388) -- Bot API 6.4, 6.5, 6.6, 6.7 (@noplanman) ### Changed ### Deprecated ### Removed -- Keyboard validations (@noplanman) ### Fixed -- 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) ### Security +## [0.81.0] - 2023-05-27 +### Notes +- [:ledger: View file changes][0.81.0] ∙ [:page_with_curl: DB migration script][0.81.0-sql-migration] +- Last version that supports PHP 7. +### Added +- Support dynamic Entity properties for newer PHP versions (@alesinicio, @TiiFuchs) (#1390) +- Bot API 6.4, 6.5, 6.6, 6.7 (@noplanman) (#1389) +### Removed +- Keyboard validations (@noplanman) (#1395) +### Fixed +- 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) + ## [0.80.0] - 2022-11-09 ### Notes - [: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 ### Deprecated - Move `hideKeyboard` to `removeKeyboard`. -[unreleased-sql-migration]: https://github.com/php-telegram-bot/core/tree/master/utils/db-schema-update/0.80.0-unreleased.sql +[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 [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 [0.80.0-bc-commands-with-underscores]: https://github.com/php-telegram-bot/core/wiki/Breaking-backwards-compatibility#commands-with-underscores [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 [Tidelift]: https://tidelift.com/subscription/pkg/packagist-longman-telegram-bot?utm_source=packagist-longman-telegram-bot&utm_medium=referral&utm_campaign=changelog [Unreleased]: https://github.com/php-telegram-bot/core/compare/master...develop +[0.81.0]: https://github.com/php-telegram-bot/core/compare/0.80.0...0.81.0 [0.80.0]: https://github.com/php-telegram-bot/core/compare/0.79.0...0.80.0 [0.79.0]: https://github.com/php-telegram-bot/core/compare/0.78.0...0.79.0 [0.78.0]: https://github.com/php-telegram-bot/core/compare/0.77.1...0.78.0 diff --git a/src/Telegram.php b/src/Telegram.php index 195cbb28..075b6fc6 100644 --- a/src/Telegram.php +++ b/src/Telegram.php @@ -37,7 +37,7 @@ class Telegram * * @var string */ - protected $version = '0.80.0'; + protected $version = '0.81.0'; /** * Telegram API key diff --git a/utils/db-schema-update/0.80.0-unreleased.sql b/utils/db-schema-update/0.80.0-0.81.0.sql similarity index 100% rename from utils/db-schema-update/0.80.0-unreleased.sql rename to utils/db-schema-update/0.80.0-0.81.0.sql