Skip to content

Commit

Permalink
Version 0.82.0
Browse files Browse the repository at this point in the history
  • Loading branch information
noplanman committed Oct 26, 2023
1 parent 3c07b04 commit 26433b3
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 10 deletions.
18 changes: 14 additions & 4 deletions CHANGELOG.md
Expand Up @@ -5,16 +5,25 @@ 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
- Missing `thumbnail_url` renaming.
### 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)
- Test against PHP 8.3 (@sergiy-petrov) (#1421)
### Fixed
- Missing `thumbnail_url` renaming.
- Fix broken exception handling (@mlocati) (#1425)

## [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]
Expand Down Expand Up @@ -625,7 +634,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
Expand Down Expand Up @@ -668,6 +677,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
Expand Down
10 changes: 5 additions & 5 deletions README.md
Expand Up @@ -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)

Expand Down Expand Up @@ -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.
Expand Down Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion src/Telegram.php
Expand Up @@ -37,7 +37,7 @@ class Telegram
*
* @var string
*/
protected $version = '0.81.0';
protected $version = '0.82.0';

/**
* Telegram API key
Expand Down
File renamed without changes.

0 comments on commit 26433b3

Please sign in to comment.