From 842cd5745b71d0aedb64696d1fdcdc57733183ba Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Armando=20L=C3=BCscher?= Date: Thu, 26 Oct 2023 22:07:29 +0200 Subject: [PATCH] Version 0.82.0 --- CHANGELOG.md | 18 +++++++++++++++--- README.md | 10 +++++----- src/Telegram.php | 2 +- ...0.81.0-unreleased.sql => 0.81.0-0.82.0.sql} | 0 4 files changed, 21 insertions(+), 9 deletions(-) rename utils/db-schema-update/{0.81.0-unreleased.sql => 0.81.0-0.82.0.sql} (100%) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3fbfe888..1185d46c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,9 +5,20 @@ 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 -- Bot API 6.8, 6.9 (@noplanman) +### Changed +### Deprecated +### Removed +### Fixed +### Security + +## [0.82.0] - 2023-10-26 +### Notes +- [:ledger: View file changes][0.82.0] ∙ [:page_with_curl: DB migration script][0.82.0-sql-migration] +- Really the last version that supports PHP 7! Only PHP 8 after this one. +### Added +- Bot API 6.8, 6.9 (@noplanman) (#1418, #1427) ### Changed ### Deprecated ### Removed @@ -625,7 +636,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/develop/utils/db-schema-update/0.81.0-unreleased.sql +[0.82.0-sql-migration]: https://github.com/php-telegram-bot/core/tree/master/utils/db-schema-update/0.81.0-0.82.0.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 @@ -668,6 +679,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.82.0]: https://github.com/php-telegram-bot/core/compare/0.81.0...0.82.0 [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 diff --git a/README.md b/README.md index 652199ab..85c13e61 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ A Telegram Bot based on the official [Telegram Bot API] -[![API Version](https://img.shields.io/badge/Bot%20API-6.7%20%28April%202023%29-32a2da.svg)](https://core.telegram.org/bots/api-changelog#april-21-2023) +[![API Version](https://img.shields.io/badge/Bot%20API-6.9%20%28September%202023%29-32a2da.svg)](https://core.telegram.org/bots/api-changelog#september-22-2023) [![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) [![Donate](https://img.shields.io/badge/%F0%9F%92%99-Donate%20%2F%20Support%20Us-blue.svg)](#donate) @@ -78,7 +78,7 @@ This Bot aims to provide a platform where one can simply write a bot and have in The Bot can: - Retrieve updates with [webhook](#webhook-installation) and [getUpdates](#getupdates-installation) methods. -- Supports all types and methods according to Telegram Bot API 6.7 (April 2023). +- Supports all types and methods according to Telegram Bot API 6.9 (September 2023). - Supports supergroups. - Handle commands in chat with other bots. - 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 ### Types -All types are implemented according to Telegram API 6.7 (April 2023). +All types are implemented according to Telegram API 6.9 (September 2023). ### Inline Query -Full support for inline query according to Telegram API 6.7 (April 2023). +Full support for inline query according to Telegram API 6.9 (September 2023). ### Methods -All methods are implemented according to Telegram API 6.7 (April 2023). +All methods are implemented according to Telegram API 6.9 (September 2023). #### Send Message diff --git a/src/Telegram.php b/src/Telegram.php index 05f0b99d..bbc94805 100644 --- a/src/Telegram.php +++ b/src/Telegram.php @@ -37,7 +37,7 @@ class Telegram * * @var string */ - protected $version = '0.81.0'; + protected $version = '0.82.0'; /** * Telegram API key diff --git a/utils/db-schema-update/0.81.0-unreleased.sql b/utils/db-schema-update/0.81.0-0.82.0.sql similarity index 100% rename from utils/db-schema-update/0.81.0-unreleased.sql rename to utils/db-schema-update/0.81.0-0.82.0.sql